diff options
-rwxr-xr-x | clean.sh | 2 | ||||
-rwxr-xr-x | sync.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ if [ $# == 0 ]; then clean_packages=true fi -while [[ $# > 0 ]] +while [[ $# -gt 0 ]] do opt="$1" case $opt in @@ -26,7 +26,7 @@ if [ $# == 0 ]; then sync_src=true fi -while [[ $# > 0 ]] +while [[ $# -gt 0 ]] do opt="$1" case $opt in |