diff options
author | Eric <[email protected]> | 2013-10-28 14:11:51 -0700 |
---|---|---|
committer | Eric <[email protected]> | 2013-10-28 14:11:51 -0700 |
commit | 7a1083d2a881b511e202edd0e2ff2b207e23ae5b (patch) | |
tree | 007b507875004456935bc006acfa781b0eae87a2 /src/rlx_release.erl | |
parent | 0f5ffc5df74ff5c308ee3d1dc657e20edc4f1cb8 (diff) | |
download | relx-7a1083d2a881b511e202edd0e2ff2b207e23ae5b.tar.gz relx-7a1083d2a881b511e202edd0e2ff2b207e23ae5b.tar.bz2 relx-7a1083d2a881b511e202edd0e2ff2b207e23ae5b.zip |
support using the original app vsn as a string not the parsed vsn
Diffstat (limited to 'src/rlx_release.erl')
-rw-r--r-- | src/rlx_release.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlx_release.erl b/src/rlx_release.erl index ca3fa11..1d333bf 100644 --- a/src/rlx_release.erl +++ b/src/rlx_release.erl @@ -281,7 +281,7 @@ create_app_spec(Annots, App, ActiveApps, LibraryApps) -> throw:not_found -> {TypeAnnot, void} end, - Vsn = rlx_app_info:vsn_as_string(App), + Vsn = rlx_app_info:original_vsn(App), case BaseAnnots of {void, void} -> {AppName, Vsn}; |