1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-05-03 20:50:13 +00:00

Prevents deleting .a and .o files from mingw's folders (macOS).

This commit is contained in:
Fellippe Heitor 2021-01-24 01:40:56 -03:00
parent e18a60b2d1
commit fd5eb1b666

View file

@ -10,8 +10,17 @@ echo "QB64 Setup"
echo ""
find . -name "*.command" -exec chmod +x {} \;
pushd internal/c/libqb >/dev/null
find . -type f -iname "*.a" -exec rm -f {} \;
find . -type f -iname "*.o" -exec rm -f {} \;
popd >/dev/null
pushd internal/c/parts >/dev/null
find . -type f -iname "*.a" -exec rm -f {} \;
find . -type f -iname "*.o" -exec rm -f {} \;
popd >/dev/null
rm ./internal/temp/*
if [ -z "$(which clang++)" ]; then
@ -64,4 +73,3 @@ else
Pause
exit 1
fi