the \rm construct was displeasing to our eyes and finally had to be removed.
all delete operations are now going through safedel, as far as i know.
if [ $? -ne 0 ]; then
# it seems our old files are still conflicting this.
if [ -f config/config_google.php ]; then
- \rm -f config/config_google.php
+ rm -f config/config_google.php
exit_on_error "removing old config for google"
fi
if [ -f config/app.php ]; then
- \rm -f config/app.php
+ rm -f config/app.php
exit_on_error "removing old config for app"
fi
if [ $? -eq 0 ]; then echo ==== Found pattern in $input_text ====; fi
done <"$TMPFILE"
-\rm -f "$TMPFILE"
+rm -f "$TMPFILE"
echo "Build starting at: $(date)"
# clean up some things.
- \rm -rf unit-test-reports
+ rm -rf unit-test-reports
# build the trunk.
ant -Dbuild.targetArch=64 build
export GFFS_LOGS="$HOME/.GenesisII"
echo cleaning out the logs directory...
-\rm -f "$GFFS_LOGS"/*log*
+rm -f "$GFFS_LOGS"/*log*
echo making a simple starting log file for container...
if [ ! -d "$GFFS_LOGS" ]; then
export SOURCES_FOUND_LIST="$(mktemp "$TMP/zz_temp_find_srcs.XXXXXX")"
fi
# clean up the file to start with.
-\rm $SOURCES_FOUND_LIST &>/dev/null
+rm $SOURCES_FOUND_LIST &>/dev/null
for i in $find_src_parms; do
#echo current dir is $i
local tmpfile="$(mktemp $TMP/aliasout.XXXXXX)"
alias $varname | sed -e 's/.*=//' >$tmpfile
echo "alias $varname=$(cat $tmpfile)"
- \rm $tmpfile
+ rm $tmpfile
elif [ -z "${!varname}" ]; then
echo "$varname undefined"
else
pushd "$FEISTY_MEOW_LOADING_DOCK" &>/dev/null
if [ -h custom ]; then
# there's an existing link, so remove it.
- \rm custom
+ rm custom
fi
# make sure we cleaned up the area before we re-link.
if [ -h custom -o -d custom -o -f custom ]; then
# make a temp file to write to before we move file into place in bind.
local new_version="/tmp/$(basename ${filename}).bkup-${RANDOM}"
- \rm -f "$new_version"
+ rm -f "$new_version"
exit_on_error "cleaning out new version of file from: $new_version"
local line
# wipe out the offending variable(s).
unset FEISTY_MEOW_SCRIPTS FEISTY_MEOW_APEX
# clean out any unfortunate wrongness that may exist in our generated areas.
- if [ -d "$FEISTY_MEOW_LOADING_DOCK" ]; then \rm -rf "$FEISTY_MEOW_LOADING_DOCK"; fi
- if [ -d "$FEISTY_MEOW_GENERATED_STORE" ]; then \rm -rf "$FEISTY_MEOW_GENERATED_STORE"; fi
+ if [ -d "$FEISTY_MEOW_LOADING_DOCK" ]; then rm -rf "$FEISTY_MEOW_LOADING_DOCK"; fi
+ if [ -d "$FEISTY_MEOW_GENERATED_STORE" ]; then rm -rf "$FEISTY_MEOW_GENERATED_STORE"; fi
# also wipe any values from the variables pointing at generated stuff.
unset FEISTY_MEOW_LOADING_DOCK FEISTY_MEOW_GENERATED_STORE
echo "
#echo PERLLIB after modification is $PERLLIB
# make toast out of generated files right away, but leave any custom scripts.
-\rm -f "$FEISTY_MEOW_LOADING_DOCK"/fmc_*
+rm -f "$FEISTY_MEOW_LOADING_DOCK"/fmc_*
## #no, old:
## if [ ! -d "$FEISTY_MEOW_LOADING_DOCK/custom" ]; then
find $dir -mindepth 1 -maxdepth 1 -type d -exec echo "dirs+=(\"{}\");" ';' >$tempfile
source "$tempfile"
#echo dirs default to: ${dirs[@]}
- \rm -f $tempfile
+ rm -f $tempfile
fi
# takes a directory name as an argument and sucks the directory
export RUN_ALL_TESTS=true
# clean up any old home storage paths.
-\rm -rf "$feisty_path/home_store".*
+rm -rf "$feisty_path/home_store".*
# set home folder to a new home_store.random folder, for anything that
# feisty meow needs to store under $HOME.
export HOME="$(mktemp -d "$feisty_path/home_store.XXXXXX")"
pushd $FEISTY_MEOW_GENERATED_STORE
-\rm -rf logs clam_tmp temporaries/*
+rm -rf logs clam_tmp temporaries/*
pushd runtime
-\rm -rf install/*
+rm -rf install/*
pushd binaries
-\rm -rf *.a *.library test_*
+rm -rf *.a *.library test_*
popd
popd
local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX)
sort <"$tempfile" >"$sortfile"
echo "$sortfile"
- \rm "$tempfile"
+ rm "$tempfile"
}
# iterates across a list of directories contained in a file (first parameter).
echo "** FAILED: Database migrations for avcore. Check log file in: $logfile"
# we keep going, because some sites aren't ready for this yet.
else
- \rm "$logfile"
+ rm "$logfile"
echo "Database for avcore migrated."
fi
fi
# link 'public' to webroot.
if [ -L public ]; then
# public is a symlink.
- \rm public
+ rm public
exit_on_error "Removing public directory symlink"
elif [ -d public ]; then
# public is a folder with default files.
#hmmm: is that safe?
- \rm -rf public
+ rm -rf public
exit_on_error "Removing public directory and contents"
fi
echo "Please consult the apache error logs for more details."
exit 1
fi
- \rm "$outfile"
+ rm "$outfile"
}
# turns on the config file we create above for apache.
echo "Please consult the apache error logs for more details."
exit 1
fi
- \rm "$outfile"
+ rm "$outfile"
}
# restarts the apache2 service.
done
cat "$logdump"
- \rm -f "$logdump"
+ rm -f "$logdump"
}
fi
# clean up.
-\rm "$newout" "$newerr"
+rm "$newout" "$newerr"
# pass along the error code we saw, whether success or failure, so that this command has same
# exit result as the original would have.
exit 1
fi
-\rm "Desktop" "My Documents" "My Pictures" "My Videos" "My Music"
+rm "Desktop" "My Documents" "My Pictures" "My Videos" "My Music"
if [ ! -d ~/linx/wine_goods ]; then
mkdir ~/linx/wine_goods
local tmpfile="$(mktemp $TMP/aliasout.XXXXXX)"
alias $varname | sed -e 's/.*=//' >$tmpfile
echo "alias $varname=$(cat $tmpfile)"
- \rm $tmpfile
+ rm $tmpfile
elif [ -z "${!varname}" ]; then
echo "$varname undefined"
else
cat "$my_output" >> "$CONGLOMERATED_TESTKIT_OUTPUT"
echo "=======" >> "$CONGLOMERATED_TESTKIT_OUTPUT"
# and now remove the tiny individual log file so we don't litter.
- \rm -f "$my_output"
+ rm -f "$my_output"
return $retval
}
##############
# clean up any conglomerated log file.
-\rm -f "$CONGLOMERATED_TESTKIT_OUTPUT"
+rm -f "$CONGLOMERATED_TESTKIT_OUTPUT"
##############