diff options
author | Fred Hebert <[email protected]> | 2017-11-01 15:40:09 -0400 |
---|---|---|
committer | Fred Hebert <[email protected]> | 2017-11-01 15:40:09 -0400 |
commit | 7e78c133c7a373384411d9fd0e1366b14e4c31d8 (patch) | |
tree | b15f294821ce2bcddf14f97cbae0e50beabebb57 /src/rlx_app_discovery.erl | |
parent | fb91587091ad8a9da7c22598e962d0f21dcc17ee (diff) | |
download | relx-7e78c133c7a373384411d9fd0e1366b14e4c31d8.tar.gz relx-7e78c133c7a373384411d9fd0e1366b14e4c31d8.tar.bz2 relx-7e78c133c7a373384411d9fd0e1366b14e4c31d8.zip |
Support OTP-20 Unicode functions
Use either optional compilation or version-safe variants of the string
functions. Prevents warnings when the switch to OTP-21 will happen.
Diffstat (limited to 'src/rlx_app_discovery.erl')
-rw-r--r-- | src/rlx_app_discovery.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlx_app_discovery.erl b/src/rlx_app_discovery.erl index 0414a0a..642b887 100644 --- a/src/rlx_app_discovery.erl +++ b/src/rlx_app_discovery.erl @@ -40,7 +40,7 @@ do(State, LibDirs) -> ec_cmd_log:info(rlx_state:log(State), fun() -> ["Resolving OTP Applications from directories:\n", - string:join([[rlx_util:indent(2), LibDir] || LibDir <- LibDirs], "\n")] + rlx_string:join([[rlx_util:indent(2), LibDir] || LibDir <- LibDirs], "\n")] end), resolve_app_metadata(State, LibDirs). |