From dde275bf7d37ea293df47139c5219f58b64d90ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Rasc=C3=A3o?= Date: Thu, 11 Jul 2024 16:57:35 +0100 Subject: [PATCH] Assume rebar3 is readily available --- test/rebar3_appup_plugin_SUITE.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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).