scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

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:
Mcc1/tests/update.sh | 4++--
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