mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-29 23:52:22 +00:00
16 lines
145 B
Text
16 lines
145 B
Text
|
#! /bin/sh
|
||
|
|
||
|
script=$1
|
||
|
shift
|
||
|
|
||
|
cat > $script <<EOF
|
||
|
#! /bin/sh
|
||
|
# compile must pass
|
||
|
$@
|
||
|
if test \$? != 0; then
|
||
|
exit 1
|
||
|
fi
|
||
|
exit 0
|
||
|
EOF
|
||
|
chmod +x $script
|