diff options
Diffstat (limited to 'src/rebar_post_script.erl')
-rw-r--r-- | src/rebar_post_script.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_post_script.erl b/src/rebar_post_script.erl index 04daec7..d83df1c 100644 --- a/src/rebar_post_script.erl +++ b/src/rebar_post_script.erl @@ -51,5 +51,6 @@ execute_post_script(Config, Key) -> undefined -> ok; Script -> - rebar_utils:sh(Script, []) + {ok, _} = rebar_utils:sh(Script, []), + ok end. |