You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2005/09/28 20:30:53 UTC

svn commit: r292239 - /ant/core/trunk/src/etc/testcases/taskdefs/exec/parrot.sh

Author: bodewig
Date: Wed Sep 28 11:30:50 2005
New Revision: 292239

URL: http://svn.apache.org/viewcvs?rev=292239&view=rev
Log:
make it work for directries with spaces

Modified:
    ant/core/trunk/src/etc/testcases/taskdefs/exec/parrot.sh

Modified: ant/core/trunk/src/etc/testcases/taskdefs/exec/parrot.sh
URL: http://svn.apache.org/viewcvs/ant/core/trunk/src/etc/testcases/taskdefs/exec/parrot.sh?rev=292239&r1=292238&r2=292239&view=diff
==============================================================================
--- ant/core/trunk/src/etc/testcases/taskdefs/exec/parrot.sh (original)
+++ ant/core/trunk/src/etc/testcases/taskdefs/exec/parrot.sh Wed Sep 28 11:30:50 2005
@@ -1,5 +1,5 @@
 # Copyright (c) 2004 The Apache Software Foundation.  All rights reserved.
-for arg in $@ ; do
+for arg in "$@" ; do
 	echo $arg out
 	sleep 1
 	echo $arg err>&2



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org