mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
0de9b02726
They're still static instances.
15 lines
165 B
Bash
Executable file
15 lines
165 B
Bash
Executable file
#! /bin/sh
|
|
|
|
script=$1
|
|
shift
|
|
|
|
cat > $script <<EOF
|
|
#! /bin/sh
|
|
# compile must fail with a normal error
|
|
$@
|
|
if test \$? != 1; then
|
|
exit 1
|
|
fi
|
|
exit 0
|
|
EOF
|
|
chmod +x $script
|