diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2018-10-18 16:10:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 16:10:28 -0400 |
commit | 384d8cccce85de1474d65272ef8f87767ac5bfc4 (patch) | |
tree | 5583dece572108bb4b038961ad34e78398498c06 /src/rebar_utils.erl | |
parent | 7bfc8110d1736d2cbf61e19d2fc16dc8e854b460 (diff) | |
parent | c9fbb4a44feac75a325c5831293901d5cb12075a (diff) |
Merge pull request #1918 from ferd/fix-hooks-on-windows
Fix shell hook expansion on windows
Diffstat (limited to 'src/rebar_utils.erl')
-rw-r--r-- | src/rebar_utils.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl index 1769b79..11add61 100644 --- a/src/rebar_utils.erl +++ b/src/rebar_utils.erl @@ -156,7 +156,7 @@ sh_send(Command0, String, Options0) -> Options = [expand_sh_flag(V) || V <- proplists:compact(Options0 ++ DefaultOptions)], - Command = lists:flatten(patch_on_windows(Command0, proplists:get_value(env, Options, []))), + Command = lists:flatten(patch_on_windows(Command0, proplists:get_value(env, Options0, []))), PortSettings = proplists:get_all_values(port_settings, Options) ++ [exit_status, {line, 16384}, use_stdio, stderr_to_stdout, hide], Port = open_port({spawn, Command}, PortSettings), @@ -187,7 +187,7 @@ sh(Command0, Options0) -> ErrorHandler = proplists:get_value(error_handler, Options), OutputHandler = proplists:get_value(output_handler, Options), - Command = lists:flatten(patch_on_windows(Command0, proplists:get_value(env, Options, []))), + Command = lists:flatten(patch_on_windows(Command0, proplists:get_value(env, Options0, []))), PortSettings = proplists:get_all_values(port_settings, Options) ++ [exit_status, {line, 16384}, use_stdio, stderr_to_stdout, hide, eof], ?DEBUG("Port Cmd: ~ts\nPort Opts: ~p\n", [Command, PortSettings]), |