commit 09944e394b7a4474d0a13a8628164cd1fe170472
Author: Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Mon Oct 19 21:21:43 2015 +0200
Commit: Roberto E. Vargas Caballero <[email protected]>
CommitDate: Mon Oct 19 21:21:43 2015 +0200
Fix update.sh
It was working with only one parameter in the command line.
diff --git a/cc1/tests/update.sh b/cc1/tests/update.sh
index 60a3f66..fb10641 100755
--- a/cc1/tests/update.sh
+++ b/cc1/tests/update.sh
@@ -12,10 +12,10 @@ case $# in
echo "usage: update.sh test ..." >&2
exit 1
;;
-1)
+*)
for i
do
- update $1
+ update $i
done
;;
esac