From 255be72c431772ff24c20f940a27906a006706a8 Mon Sep 17 00:00:00 2001 From: deajan Date: Sun, 14 Oct 2018 22:41:18 +0200 Subject: [PATCH] Removed diagnostic lines --- dev/ofunctions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/ofunctions.sh b/dev/ofunctions.sh index 2f49682..4d28e37 100644 --- a/dev/ofunctions.sh +++ b/dev/ofunctions.sh @@ -452,9 +452,9 @@ function KillAllChilds { #### CleanUp SUBSET #### function CleanUp { if [ "$_DEBUG" != "yes" ]; then - rm -fv "$RUN_DIR/$PROGRAM."*".$SCRIPT_PID.$TSTAMP" >> /root/rm 2>&1 #WIP -v + rm -fv "$RUN_DIR/$PROGRAM."*".$SCRIPT_PID.$TSTAMP" # Fix for sed -i requiring backup extension for BSD & Mac (see all sed -i statements) - rm -fv "$RUN_DIR/$PROGRAM."*".$SCRIPT_PID.$TSTAMP.tmp" >> /root/rm 2>&1 + rm -fv "$RUN_DIR/$PROGRAM."*".$SCRIPT_PID.$TSTAMP.tmp" fi } #### CleanUp SUBSET END ####