summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorLuis Rascão <luis.rascao@gmail.com>2014-06-26 23:29:26 +0100
committerLuis Rascão <luis.rascao@gmail.com>2014-06-26 23:29:26 +0100
commit41095e73e2b58ac134e300236df247989bc485c0 (patch)
tree5e693c32e82f197217bc1b9c59ea9df49ff11958 /bootstrap
parent411d703666e8a8b4fca4ad6e7beff069fb64d0d4 (diff)
downloadrebar-41095e73e2b58ac134e300236df247989bc485c0.tar.gz
fix indentation issues
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap12
1 files changed, 6 insertions, 6 deletions
diff --git a/bootstrap b/bootstrap
index e14b0e0..cc2a751 100755
--- a/bootstrap
+++ b/bootstrap
@@ -7,10 +7,10 @@ main(Args) ->
true ->
usage(),
halt(0);
- false ->
+ false ->
ok
- end,
-
+ end,
+
%% Get a string repr of build time
Built = build_time(),
@@ -99,9 +99,9 @@ main(Args) ->
usage() ->
io:format("Usage: bootstrap [OPTION]...~n"),
- io:format(" force=1\t unconditional build~n"),
- io:format(" debug\t add debug information~n").
-
+ io:format(" force=1 unconditional build~n"),
+ io:format(" debug add debug information~n").
+
is_otp(OtpInfo, Regex) ->
case re:run(OtpInfo, Regex, [{capture, none}]) of
match -> true;