1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00
QB64-PE/.ci/compile.sh
2022-04-28 17:21:58 -04:00

16 lines
293 B
Bash
Executable file

#!/bin/bash
./qb64_bootstrap -x -w source/qb64.bas
SUCCESS=$?
rm qb64_bootstrap
rm internal/source/*
rm internal/temp/debug_* internal/temp/recompile_*
mv internal/temp/* internal/source/
find . -type f -iname "*.a" -exec rm {} \;
find . -type f -iname "*.o" -exec rm {} \;
exit $SUCCESS