shithub: scc

Download patch

ref: 09944e394b7a4474d0a13a8628164cd1fe170472
parent: 72d98825cf2e69316ce458b550dc3a400b1775de
author: Roberto E. Vargas Caballero <[email protected]>
date: Mon Oct 19 17:21:43 EDT 2015

Fix update.sh

It was working with only one parameter in the command line.

--- a/cc1/tests/update.sh
+++ b/cc1/tests/update.sh
@@ -12,10 +12,10 @@
 	echo "usage: update.sh test ..." >&2
 	exit 1
 	;;
-1)
+*)
 	for i
 	do
-		update $1
+		update $i
 	done
 	;;
 esac