Change cleanup list to string

This commit is contained in:
clinton-hall 2012-12-20 18:12:22 -08:00
commit 90418660af

View file

@ -372,7 +372,7 @@ fi
echo "[INFO] Post-Process: Cleaning up" echo "[INFO] Post-Process: Cleaning up"
chmod -R a+rw . chmod -R a+rw .
# Clean up list, space seperated array from GUI # Clean up list, space seperated array from GUI
for item in ${FileCleanUp[*]} ; do rm $item >/dev/null 2>&1 ; done for word in $FileCleanUp ; do rm $word >/dev/null 2>&1 ; done
# Removed by default # Removed by default
rm _brokenlog.txt >/dev/null 2>&1 rm _brokenlog.txt >/dev/null 2>&1
if [ "$Unrared" -eq 1 ]; then if [ "$Unrared" -eq 1 ]; then