X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fgenerator%2Fwrapdoze.sh;h=d38b432b2c229f414f60249099ff3b8d55c0cbba;hb=a272a6ae4172dfb1451d1d5a36390c23d7f056ee;hp=3851aab9ecc172201347b4fe10ac92b2a4974a52;hpb=478592a729f51c71ce6a2af9913e2a65ba8105cf;p=feisty_meow.git diff --git a/scripts/generator/wrapdoze.sh b/scripts/generator/wrapdoze.sh index 3851aab9..d38b432b 100755 --- a/scripts/generator/wrapdoze.sh +++ b/scripts/generator/wrapdoze.sh @@ -1,6 +1,6 @@ #!/bin/bash -source $FEISTY_MEOW_SCRIPTS/core/functions.sh +source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" #hmmm: make this support multiple vars as parameters. # replaces a specific environment variable with a dos approved equivalent. @@ -14,6 +14,7 @@ function dossify_environment_variable() ##echo "hey now the var is '${!var}'" old_value="${!var}" +#echo "var is '$var' and old value is '$old_value'" if [[ ! "$old_value" =~ \/cygdrive\/ ]]; then #echo didnt have a cygdrive in it: $old_value return 0 @@ -74,7 +75,7 @@ function dossify_and_run_commands() real_commands+=($(echo $i | sed -e 's/\//\\/g')) done - if [ ! -z "$SHELL_DEBUG" ]; then + if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then echo commands are now: for i in "${real_commands[@]}"; do echo -n "$i " @@ -99,8 +100,10 @@ function dossify_and_run_commands() #echo "**** cmd file is $cmdfile" cmd /c $(cat "$cmdfile") retval=$? - rm "$cmdfile" - + # leave the file for inspection if there was an error. + if [ $retval -eq 0 ]; then + \rm "$cmdfile" + fi return $retval }