aboutsummaryrefslogtreecommitdiffstats
path: root/src/rlx_config.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rlx_config.erl')
-rw-r--r--src/rlx_config.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_config.erl b/src/rlx_config.erl
index 3c3ba98..d18f5f1 100644
--- a/src/rlx_config.erl
+++ b/src/rlx_config.erl
@@ -324,10 +324,10 @@ merge_configs([{Key, Value} | CliTerms], ConfigTerms) ->
end.
parse_vsn(Vsn) when Vsn =:= semver ; Vsn =:= "semver" ->
- {ok, V} = ec_git_vsn:vsn([]),
+ {ok, V} = ec_git_vsn:vsn(ec_git_vsn:new()),
V;
parse_vsn({semver, _}) ->
- {ok, V} = ec_git_vsn:vsn([]),
+ {ok, V} = ec_git_vsn:vsn(ec_git_vsn:new()),
V;
parse_vsn({cmd, Command}) ->
V = os:cmd(Command),