diff options
Diffstat (limited to 'src/tests')
-rwxr-xr-x | src/tests/antunit/taskdefs/exec/parrot.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/tests/antunit/taskdefs/exec/parrot.sh b/src/tests/antunit/taskdefs/exec/parrot.sh index 2467f23a0..c064c38a7 100755 --- a/src/tests/antunit/taskdefs/exec/parrot.sh +++ b/src/tests/antunit/taskdefs/exec/parrot.sh @@ -1,3 +1,4 @@ +#!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. @@ -12,8 +13,8 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -for arg in "$@" ; do - echo $arg out - sleep 1 - echo $arg err>&2 +for arg in "$@"; do + echo $arg out + sleep 1 + echo $arg err>&2 done |