From: Andrew M. <fit...@us...> - 2006-11-01 12:31:52
|
Update of /cvsroot/radmind/radmind-assistant/hooks In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17728 Modified Files: radmind.hook Log Message: Fix quoting problem so postapply scripts run. Thanks to Nigel Kersten for drawing attention to it. Index: radmind.hook =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/hooks/radmind.hook,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** radmind.hook 24 Feb 2006 22:25:27 -0000 1.1 --- radmind.hook 1 Nov 2006 12:31:47 -0000 1.2 *************** *** 187,191 **** # run any scripts in the post-apply directory if [ -d ${postapply} ]; then ! for script in "${postapply}/*"; do ${script} ${FSDIFFOUTPUT} done --- 187,191 ---- # run any scripts in the post-apply directory if [ -d ${postapply} ]; then ! for script in "${postapply}"/*; do ${script} ${FSDIFFOUTPUT} done |