summaryrefslogtreecommitdiff
path: root/src/rebar_prv_escriptize.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2018-04-20 20:11:13 -0400
committerFred Hebert <mononcqc@ferd.ca>2018-04-20 20:14:17 -0400
commit3630a06a0131f8ad87e5b727a94ff5ffe1f6a611 (patch)
tree6117b75a490747bbe859b4a174bc62fb93a959ea /src/rebar_prv_escriptize.erl
parent6ab00567f506de5b95ef6456a4048ed184f4d58e (diff)
Fix broken windows build
Let's bundle this with another PR
Diffstat (limited to 'src/rebar_prv_escriptize.erl')
-rw-r--r--src/rebar_prv_escriptize.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_escriptize.erl b/src/rebar_prv_escriptize.erl
index 4d767fd..fceb65e 100644
--- a/src/rebar_prv_escriptize.erl
+++ b/src/rebar_prv_escriptize.erl
@@ -267,7 +267,7 @@ rm_newline(String) ->
[C || C <- String, C =/= $\n].
write_windows_script(Target) ->
- CmdPath = Target ++ ".cmd",
+ CmdPath = unicode:characters_to_list(Target) ++ ".cmd",
CmdScript=
"@echo off\r\n"
"setlocal\r\n"