Skip to content

Commit

Permalink
Assume rebar3 is readily available
Browse files Browse the repository at this point in the history
  • Loading branch information
lrascao authored Jul 11, 2024
1 parent e070863 commit dde275b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/rebar3_appup_plugin_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit dde275b

Please sign in to comment.