summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2011-12-25 16:44:57 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-12-25 16:46:13 +0100
commitbd349bd2c4d8f68e19f130ea04cf27542e52fb3b (patch)
treeda4f062c91e37f40abd2be39e926637b8f91dfe4 /bootstrap
parent8c01734e98c3eedfd299884e1553ca315e55bda4 (diff)
downloadrebar-bd349bd2c4d8f68e19f130ea04cf27542e52fb3b.tar.gz
bootstrap: do not ignore write_file return value
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap8
1 files changed, 5 insertions, 3 deletions
diff --git a/bootstrap b/bootstrap
index 75c2ffc..42a3d97 100755
--- a/bootstrap
+++ b/bootstrap
@@ -141,7 +141,9 @@ write_windows_scripts() ->
"setlocal\r\n"
"set rebarscript=%~f0\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},
- file:write_file("rebar.ps1", [unicode:encoding_to_bom(UTF16BE),
- unicode:characters_to_binary(PowershellScript, utf8, UTF16BE)]).
+ ok = file:write_file("rebar.ps1",
+ [unicode:encoding_to_bom(UTF16BE),
+ unicode:characters_to_binary(PowershellScript,
+ utf8, UTF16BE)]).