diff --git a/test/rebar3_appup_plugin_SUITE.erl b/test/rebar3_appup_plugin_SUITE.erl index 5016995..04fcc62 100644 --- a/test/rebar3_appup_plugin_SUITE.erl +++ b/test/rebar3_appup_plugin_SUITE.erl @@ -1006,9 +1006,9 @@ rebar3_command(Dir, Command) -> rebar3_command(Dir, Command, []). rebar3_command(Dir, Command, []) -> - sh("./rebar3 " ++ Command, [], Dir); + sh("rebar3 " ++ Command, [], Dir); rebar3_command(Dir, Command, [debug]) -> - sh("./rebar3 " ++ Command, [{"DEBUG", "1"}], Dir). + sh("rebar3 " ++ Command, [{"DEBUG", "1"}], Dir). git_checkout(Dir, Tag) -> sh("git checkout " ++ Tag, [], Dir).