From 03db6ef24a3eeb13c93fca7572ee4fafa17678a8 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 18 Mar 2013 00:27:44 -0400 Subject: [PATCH] Slightly more self-explanatory output for ./hacking/env-setup --- hacking/env-setup | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/hacking/env-setup b/hacking/env-setup index d8b5b58ee5d..338e768686b 100755 --- a/hacking/env-setup +++ b/hacking/env-setup @@ -25,11 +25,17 @@ export ANSIBLE_LIBRARY="$ANSIBLE_HOME/library" # Print out values unless -q is set if [ $# -eq 0 -o "$1" != "-q" ] ; then + echo "" + echo "Setting up Ansible to run out of checkout..." + echo "" echo "PATH=$PATH" echo "PYTHONPATH=$PYTHONPATH" echo "ANSIBLE_LIBRARY=$ANSIBLE_LIBRARY" echo "MANPATH=$MANPATH" + echo "" - echo "Reminder: specify your host file with -i" - echo "Done." + echo "Remember, you may wish to specify your host file with -i" + echo "" + echo "Done!" + echo "" fi