From 57a03f8db15a53609659ea1f3d901c9d72999846 Mon Sep 17 00:00:00 2001 From: Jelmer Snoeck Date: Sat, 28 Apr 2012 12:54:07 +0200 Subject: [PATCH] Install: explain environment piece of code. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index ef03b9c..c6dafb8 100755 --- a/install.sh +++ b/install.sh @@ -90,6 +90,7 @@ for sourceFile in .*; do ln -vs "$PWD/$sourceFile" "$targetFile"; done; +# This will add a tag to our prompt, so we know which environment we're in. touch ~/.bash_environment; read -p "Please, enter your environment: "; echo -e "export __prompt_environment='[$REPLY] '" | tee ~/.bash_environment > /dev/null;