use -gt consistently
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
91106ba0af
commit
20f0a788b1
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ if [ "$1" = "-p" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
i=0
|
i=0
|
||||||
while [ $# -ge 1 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
if [ "$parallel" ]; then
|
if [ "$parallel" ]; then
|
||||||
cdist-deploy-to "$1" | filter "$1" &
|
cdist-deploy-to "$1" | filter "$1" &
|
||||||
# Record pid and host for use later
|
# Record pid and host for use later
|
||||||
|
|
Loading…
Reference in a new issue