rudimentary java library beginning. cleaned up scripts quite
[feisty_meow.git] / scripts / core / bootstrap_shells.sh
index 5ce180c199664cff299c494c59f96c3b01883933..a1e3cabf2afdaa581f137818ef26fae346bf87c4 100644 (file)
@@ -41,8 +41,10 @@ if [ ! -d "$FEISTY_MEOW_GENERATED" ]; then
   mkdir "$FEISTY_MEOW_GENERATED"
 fi
 
+# just a variable we use in here to refer to the generated variables file.
 GENERATED_FEISTY_MEOW_VARIABLES="$FEISTY_MEOW_GENERATED/feisty_meow_variables.sh"
-echo >"$GENERATED_FEISTY_MEOW_VARIABLES"
+# create the alias file as totally blank.
+echo -n >"$GENERATED_FEISTY_MEOW_VARIABLES"
 for i in FEISTY_MEOW_DIR FEISTY_MEOW_SCRIPTS FEISTY_MEOW_GENERATED; do
   echo "export $i=${!i}" >>"$GENERATED_FEISTY_MEOW_VARIABLES"
 done