bootstrap: do not ignore write_file return value

This commit is contained in:
Tuncer Ayaz 2011-12-25 16:44:57 +01:00
parent 8c01734e98
commit bd349bd2c4

View file

@ -141,7 +141,9 @@ write_windows_scripts() ->
"setlocal\r\n" "setlocal\r\n"
"set rebarscript=%~f0\r\n" "set rebarscript=%~f0\r\n"
"escript.exe \"%rebarscript:.bat=%i\" %*\r\n", "escript.exe \"%rebarscript:.bat=%i\" %*\r\n",
file:write_file("rebar.cmd", CmdScript), ok = file:write_file("rebar.cmd", CmdScript),
UTF16BE = {utf16, big}, UTF16BE = {utf16, big},
file:write_file("rebar.ps1", [unicode:encoding_to_bom(UTF16BE), ok = file:write_file("rebar.ps1",
unicode:characters_to_binary(PowershellScript, utf8, UTF16BE)]). [unicode:encoding_to_bom(UTF16BE),
unicode:characters_to_binary(PowershellScript,
utf8, UTF16BE)]).