From 1b5906f97a129fa95bb9a5149b7787b886fbe8da Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sun, 27 Nov 2005 05:05:05 +0000 Subject: lots of build bug fixes and additions, including pixeltango and lots of binary files, including many flext externals. this will probably be pd-0.38.4-extended-RC5 svn path=/trunk/; revision=4051 --- scripts/convert-help-to-standard.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/convert-help-to-standard.sh b/scripts/convert-help-to-standard.sh index 54ee131a..56175fd1 100755 --- a/scripts/convert-help-to-standard.sh +++ b/scripts/convert-help-to-standard.sh @@ -11,8 +11,13 @@ for helpfile in help-*.pd ; do if [ -e $helpfile ]; then - mv "$helpfile" "`echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`" - echo "SWAP $helpfile FOR `echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`" + newhelpfile=`echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'` + if [ "$helpfile" != "$newhelpfile" ]; then + echo " swap $helpfile" "$newhelpfile" + mv "$helpfile" "$newhelpfile" + else + echo "SAMEFILE $helpfile" + fi fi done -- cgit v1.2.1