summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGrigory Starinkin <starinkin@gmail.com>2018-05-08 21:42:43 +0100
committerGrigory Starinkin <starinkin@gmail.com>2018-05-08 21:42:43 +0100
commitc5ae9f3fed035d2ef8f072da53647c212f92db8b (patch)
treed6a095081f8c4972961ff7866e7f742d1eeb9f24 /src
parent59a99a704fd22eb1e5b451fbe2d97ae7a6e29d9d (diff)
start at least one async thread in async thread pool
fixes an issue when shell is terminated with an error "Bus error: 10", on attempt to run rebar shell with verbose logging
Diffstat (limited to 'src')
-rw-r--r--src/rebar3.erl2
-rw-r--r--src/rebar_prv_local_install.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl
index 8e9d4b1..9a5486d 100644
--- a/src/rebar3.erl
+++ b/src/rebar3.erl
@@ -54,7 +54,7 @@
%% ====================================================================
%% @doc For running with:
-%% erl +sbtu +A0 -noinput -mode minimal -boot start_clean -s rebar3 main -extra "$@"
+%% erl +sbtu +A1 -noinput -mode minimal -boot start_clean -s rebar3 main -extra "$@"
-spec main() -> no_return().
main() ->
List = init:get_plain_arguments(),
diff --git a/src/rebar_prv_local_install.erl b/src/rebar_prv_local_install.erl
index bb019c4..c41812f 100644
--- a/src/rebar_prv_local_install.erl
+++ b/src/rebar_prv_local_install.erl
@@ -64,7 +64,7 @@ format_error(Reason) ->
bin_contents(OutputDir) ->
<<"#!/usr/bin/env sh
-erl -pz ", (rebar_utils:to_binary(OutputDir))/binary,"/*/ebin +sbtu +A0 -noshell -boot start_clean -s rebar3 main $REBAR3_ERL_ARGS -extra \"$@\"
+erl -pz ", (rebar_utils:to_binary(OutputDir))/binary,"/*/ebin +sbtu +A1 -noshell -boot start_clean -s rebar3 main $REBAR3_ERL_ARGS -extra \"$@\"
">>.
extract_escript(State, ScriptPath) ->