diff options
author | Daniel Widgren <[email protected]> | 2015-06-11 14:44:44 +0200 |
---|---|---|
committer | Daniel Widgren <[email protected]> | 2015-06-17 21:37:57 +0200 |
commit | 04a945375a63542811d3af7bd14bc7d5c5b303d9 (patch) | |
tree | 9af1c78a7fbcf6b549192a850d52be2c3c9bf19a /src/rlx_cmd_args.erl | |
parent | d7d18d2f88ea9a6597f6d45bc110e2f247b4ef57 (diff) | |
download | relx-04a945375a63542811d3af7bd14bc7d5c5b303d9.tar.gz relx-04a945375a63542811d3af7bd14bc7d5c5b303d9.tar.bz2 relx-04a945375a63542811d3af7bd14bc7d5c5b303d9.zip |
Fixing test for windows, changing symlink to symlink_or_copy
Diffstat (limited to 'src/rlx_cmd_args.erl')
-rw-r--r-- | src/rlx_cmd_args.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rlx_cmd_args.erl b/src/rlx_cmd_args.erl index 2039b43..309282e 100644 --- a/src/rlx_cmd_args.erl +++ b/src/rlx_cmd_args.erl @@ -318,6 +318,8 @@ convert_overrides([Override | Rest], Acc) case re:split(Override, ":") of [AppName, AppDir] -> convert_overrides(Rest, [{rlx_util:to_atom(AppName), AppDir} | Acc]); + [AppName, Drive, AppDir] -> + convert_overrides(Rest, [{rlx_util:to_atom(AppName), <<Drive/binary, ":", AppDir/binary>>} | Acc]); _ -> ?RLX_ERROR({failed_to_parse_override, Override}) end; |