improve build script

This commit is contained in:
Luca Bilke 2024-04-17 23:17:37 +02:00
parent f72e6cc250
commit df00cd0094
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
1 changed files with 6 additions and 2 deletions

View File

@ -8,4 +8,8 @@ for patch in patches/*.diff; do
done
cp -f config.h st-final/
cd st-final || exit 1
if [ "$1" = "-i" ]; then
sudo make install
else
make
fi