mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
This ensures that the test scripts are correctly run with the Bourne shell, regardless of the (potentially more exotic) shell that is used to invoke the script.
10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
fname=$(mktemp)
|
|
|
|
for i in *.asm; do
|
|
../../rgbasm $i >$fname 2>&1
|
|
mv -f $fname ${i%.asm}.out
|
|
done
|
|
|
|
exit 0
|