mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
fix indentation issues
This commit is contained in:
parent
411d703666
commit
41095e73e2
1 changed files with 6 additions and 6 deletions
12
bootstrap
12
bootstrap
|
@ -7,10 +7,10 @@ main(Args) ->
|
||||||
true ->
|
true ->
|
||||||
usage(),
|
usage(),
|
||||||
halt(0);
|
halt(0);
|
||||||
false ->
|
false ->
|
||||||
ok
|
ok
|
||||||
end,
|
end,
|
||||||
|
|
||||||
%% Get a string repr of build time
|
%% Get a string repr of build time
|
||||||
Built = build_time(),
|
Built = build_time(),
|
||||||
|
|
||||||
|
@ -99,9 +99,9 @@ main(Args) ->
|
||||||
|
|
||||||
usage() ->
|
usage() ->
|
||||||
io:format("Usage: bootstrap [OPTION]...~n"),
|
io:format("Usage: bootstrap [OPTION]...~n"),
|
||||||
io:format(" force=1\t unconditional build~n"),
|
io:format(" force=1 unconditional build~n"),
|
||||||
io:format(" debug\t add debug information~n").
|
io:format(" debug add debug information~n").
|
||||||
|
|
||||||
is_otp(OtpInfo, Regex) ->
|
is_otp(OtpInfo, Regex) ->
|
||||||
case re:run(OtpInfo, Regex, [{capture, none}]) of
|
case re:run(OtpInfo, Regex, [{capture, none}]) of
|
||||||
match -> true;
|
match -> true;
|
||||||
|
|
Loading…
Reference in a new issue