From: Chris Koeritz Date: Fri, 9 Oct 2015 15:20:58 +0000 (-0400) Subject: fixed stray apostrophes around result from spacem when no change was made by second... X-Git-Tag: 2.140.90~584 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=f572426ee59be801010c446e72e4c60e4768712a;p=feisty_meow.git fixed stray apostrophes around result from spacem when no change was made by second step. --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 8054705d..41533fa1 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -489,7 +489,7 @@ if [ -z "$skip_all" ]; then actual_file="$(echo $intermediate_name | sed -e "s/'\([^']*\)'/\1/")" final_name="$(perl $FEISTY_MEOW_SCRIPTS/files/renlower.pl "$actual_file")" if [ -z "$final_name" ]; then - final_name="'$intermediate_name'" + final_name="$intermediate_name" else final_name="$(echo $final_name | sed -e 's/.*=> //')" fi