summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2009-12-04 13:54:44 -0700
committerDave Smith <dizzyd@dizzyd.com>2009-12-04 13:54:44 -0700
commit01684ff0fa77186d41afd532e948faacbe5923a2 (patch)
tree548ce6f3fea7f3541c1e422a27aced27e8c08464 /bootstrap
parentb49189869067401c9da92a22f0a2343b7a2a2456 (diff)
downloadrebar-01684ff0fa77186d41afd532e948faacbe5923a2.tar.gz
Add a nice message
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap8
1 files changed, 7 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 04f94dc..237c5b2 100755
--- a/bootstrap
+++ b/bootstrap
@@ -47,7 +47,13 @@ main(Args) ->
end,
%% Finally, update executable perms for our script
- [] = os:cmd("chmod u+x rebar").
+ [] = os:cmd("chmod u+x rebar"),
+
+ %% 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").
+