summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2014-07-15 08:45:36 -0400
committerFred Hebert <mononcqc@ferd.ca>2014-07-15 08:45:36 -0400
commit8b6a2a8c74c75a2bb2fa45567b1e16ee5aee8658 (patch)
treebcaa74ffe8c1acb40f456a5b421ecabeffec0ac2 /bootstrap
parent353af1cdba8f48c0c0355d726c532cc942b69cb0 (diff)
parent15373a580fa11783a28084f8456211dd84c270b8 (diff)
downloadrebar-8b6a2a8c74c75a2bb2fa45567b1e16ee5aee8658.tar.gz
Merge branch 'minor-fixes' of https://github.com/tuncer/rebar into tuncer-minor-fixes
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap9
1 files changed, 5 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index cc2a751..df09f7e 100755
--- a/bootstrap
+++ b/bootstrap
@@ -36,10 +36,11 @@ main(Args) ->
%% Extract the system info of the version of OTP we use to compile rebar
OtpInfo = string:strip(erlang:system_info(otp_release), both, $\n),
- %% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
- %% At the same time, their counterparts dict() and digraph() are to be deprecated
- %% in Erlang 18. namespaced_types option is used to select proper type name
- %% depending of the OTP version used.
+ %% Types dict:dict() and digraph:digraph() have been introduced in
+ %% Erlang 17.
+ %% At the same time, their counterparts dict() and digraph() are to be
+ %% deprecated in Erlang 18. namespaced_types option is used to select
+ %% proper type name depending on the OTP version used.
NamespacedTypes = case is_otp(OtpInfo, "^[0-9]+") of
true -> {d, namespaced_types};
false -> undefined