1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 04:11:21 +00:00

Merge pull request #20 from juhagman/patch-1

Properly attempts to delete the contents of ./internal/temp instead of /internal/temp
This commit is contained in:
Fellippe Heitor 2020-01-13 11:41:08 -03:00 committed by GitHub
commit 3f53d09a88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ echo ""
find . -name "*.command" -exec chmod +x {} \;
find . -type f -iname "*.a" -exec rm -f {} \;
find . -type f -iname "*.o" -exec rm -f {} \;
rm /internal/temp/*
rm ./internal/temp/*
if [ -z "$(which g++)" ]; then
echo "GNU C++ compiler not detected (g++)"