commit 09944e394b7a4474d0a13a8628164cd1fe170472
parent 72d98825cf2e69316ce458b550dc3a400b1775de
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Mon, 19 Oct 2015 21:21:43 +0200
Fix update.sh
It was working with only one parameter in the command line.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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