From 01684ff0fa77186d41afd532e948faacbe5923a2 Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Fri, 4 Dec 2009 13:54:44 -0700 Subject: [PATCH] Add a nice message --- bootstrap | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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"). +