Преглед изворни кода

Fix bug 805

Use rebar_utils:find_executable/1 that wraps the
path in quotes to make it work even if it contains
whitespace.
pull/3/head
Juhani Rankimies пре 14 година
committed by Tuncer Ayaz
родитељ
комит
fe664e8c50
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/rebar_utils.erl

+ 1
- 1
src/rebar_utils.erl Прегледај датотеку

@ -93,7 +93,7 @@ sh(Command0, Env, Dir) ->
%% We need a bash shell to execute on windows
%% also the port doesn't seem to close from time to time (mingw)
patch_on_windows(Cmd, {win32,nt}) ->
case os:find_executable("bash") of
case find_executable("bash") of
false -> Cmd;
Bash ->
Bash ++ " -c \"" ++ Cmd ++ "; echo _port_cmd_status_ $?\" "

Loading…
Откажи
Сачувај