projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1dee9b2
)
fixed extra quote in printout of name change.
author
Chris Koeritz
<fred@gruntose.com>
Sat, 11 Apr 2015 06:55:16 +0000
(
02:55
-0400)
committer
Chris Koeritz
<fred@gruntose.com>
Sat, 11 Apr 2015 06:55:16 +0000
(
02:55
-0400)
scripts/core/functions.sh
patch
|
blob
|
history
diff --git
a/scripts/core/functions.sh
b/scripts/core/functions.sh
index ead36518858b006c64082e38841cf83dd622b614..b068210cf244bca75b009120971e5a5a3db88478 100644
(file)
--- a/
scripts/core/functions.sh
+++ b/
scripts/core/functions.sh
@@
-411,7
+411,7
@@
if [ -z "$skip_all" ]; then
# the output of the replace operaton for reporting.
final_name="$(perl "$FEISTY_MEOW_SCRIPTS/files/replace_spaces_with_underscores.sh" "$arg2")"
# now zap the intermediate part of the name off.
- final_name="$(echo
\"$final_name\"
| sed -e 's/.*=> //')"
+ final_name="$(echo
$final_name
| sed -e 's/.*=> //')"
# printout the combined operation results.
echo "'$arg' => $final_name"
done