diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-08-08 22:35:45 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-08-08 22:35:45 +0200 |
commit | 2911d48fb1941b56d7660d8e8b51e395832a3a0b (patch) | |
tree | 016d0fcbdd35daf1ba4f1e4e2a4834ffda1c1932 | |
parent | 4f41e742d3e583741d2e9cbacdd43f8ca5d90767 (diff) |
Remove trailing whitespace
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -81,19 +81,19 @@ main(Args) -> _ -> ok end, - + %% Add a helpful message io:format("Congratulations! You now have a self-contained script called \"rebar\" in\n" "your current working directory. Place this script anywhere in your path\n" "and you can use rebar to build OTP-compliant apps.\n"). rm(Path) -> - NativePath = filename:nativename(Path), + NativePath = filename:nativename(Path), Cmd = case os:type() of {unix,_} -> "rm -f "; {win32,_} -> "del /q " end, - [] = os:cmd(Cmd ++ NativePath), + [] = os:cmd(Cmd ++ NativePath), ok. build_time() -> |