Skip to content

Commit

Permalink
Fix broken windows build
Browse files Browse the repository at this point in the history
Let's bundle this with another PR
  • Loading branch information
ferd committed Apr 21, 2018
1 parent bc9f7e0 commit 76baafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar_prv_escriptize.erl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 76baafe

Please sign in to comment.