Browse Source

remove unwwanted parameter

Godzil 5 years ago
parent
commit
bf941819a8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      bin/crunchy.sh

+ 2 - 2
bin/crunchy.sh

@@ -1,10 +1,10 @@
 #!/bin/bash
 PARAMS=$*
 for i in {1..20}; do
-	crunchy -u ${PARAMS}
+	crunchy ${PARAMS}
 	if [ $? == 0 ]; then
 	 	break
 	fi
 	echo "Going to retry..."	
 	sleep 3
-done
+done