Let 'compile.sh' compile just a single selected file, instead of compiling the whole directory

Bring changes from SourceMod's "compile.sh"
This commit is contained in:
Dominik Adrian Grzywak 2024-11-14 15:39:51 +01:00 committed by GitHub
parent 27f451a868
commit ea3f09f105
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,5 @@
#!/bin/bash
#!/bin/bash -e
cd "$(dirname "$0")"
# AMX Mod X
#
@ -11,7 +12,15 @@
test -e compiled || mkdir compiled
rm -f temp.txt
if [[ $# -ne 0 ]]; then
for sourcefile in "$@"
do
amxxfile="`echo $sourcefile | sed -e 's/\.sma$/.amxx/'`"
echo -n "Compiling $sourcefile ..."
./amxxpc $sourcefile -ocompiled/$amxxfile >> temp.txt
echo "done"
done
else
for sourcefile in *.sma
do
amxxfile="`echo $sourcefile | sed -e 's/\.sma$/.amxx/'`"
@ -19,6 +28,7 @@ do
./amxxpc $sourcefile -ocompiled/$amxxfile >> temp.txt
echo "done"
done
fi
less temp.txt
rm temp.txt