2.11 - Ok version with fixed file handling when using input file instead of dir

This commit is contained in:
Louwrentius 2009-03-21 20:50:37 +00:00
parent d2a8a6e08d
commit b3ba085fbe
1 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ trap 'kill_process; ' INT
# Setting some vars. Do not change.
SCRIPT_NAME="Distributed Parallel Processing Shell Script"
SCRIPT_VERSION="2.10"
SCRIPT_VERSION="2.11"
# The first argument to this script is always the 'mode'.
MODE="$1"
@ -927,7 +927,7 @@ upload_item () {
log DEBUG "ERROR - uploading of $ITEM failed."
else
log DEBUG "Upload of item $ITEM success"
rm $ITEM
rm "$ITEM"
fi
else
cp "$ITEM" $REMOTE_OUTPUT_DIR
@ -1186,7 +1186,7 @@ commando () {
then
if [ -e "$ITEM" ]
then
rm $ITEM
rm "$ITEM"
else
log DEBUG "ERROR Something went wrong removing item $ITEM from local work dir."
fi