mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
11 lines
135 B
Bash
Executable File
11 lines
135 B
Bash
Executable File
fname=$(mktemp)
|
|
rc=0
|
|
|
|
for i in *.asm; do
|
|
../../rgbasm $i >$fname 2>&1
|
|
diff -u $fname ${i%.asm}.out
|
|
rc=$(($? || $rc))
|
|
done
|
|
|
|
exit $rc
|