mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
rebar.config.script: Don't check REBAR_PROFILE here
To get release with development tools, don't check rebar profile here. Instead, use "./configure --enable-tools" and it will be checked in ejabberd.app.src.script
This commit is contained in:
parent
9275bf40b2
commit
0b37d50dac
@ -353,15 +353,11 @@ VarsApps = case file:consult(filename:join([filename:dirname(SCRIPT),"vars.confi
|
||||
|
||||
ProcessRelx = fun(Relx, Deps) ->
|
||||
{value, {release, NameVersion, DefaultApps}, RelxTail} = lists:keytake(release, 1, Relx),
|
||||
ProfileApps = case os:getenv("REBAR_PROFILE") of
|
||||
"dev" -> [observer, runtime_tools, wx, debugger];
|
||||
_ -> []
|
||||
end,
|
||||
DepApps = lists:map(fun({DepName, _, _}) -> DepName;
|
||||
({DepName, _}) -> DepName;
|
||||
(DepName) -> DepName
|
||||
end, Deps),
|
||||
[{release, NameVersion, DefaultApps ++ VarsApps ++ ProfileApps ++ DepApps} | RelxTail]
|
||||
[{release, NameVersion, DefaultApps ++ VarsApps ++ DepApps} | RelxTail]
|
||||
end,
|
||||
|
||||
GithubConfig = case {os:getenv("GITHUB_ACTIONS"), os:getenv("GITHUB_TOKEN")} of
|
||||
|
Loading…
Reference in New Issue
Block a user