Compare commits

..

1 Commits

Author SHA1 Message Date
bcf8107fb1 Fix cleaning source libs
The clean script did delete the build.sh scripts. If the user reruns
the build scirpt, he can not fetch the sources and build again.
2024-09-16 23:00:11 +02:00

View File

@ -14,7 +14,7 @@ echo "Cleaning bundled third-party dependencies..."
if [ -e source/.svn ]; then
(cd source && svn revert -R . && svn st --no-ignore | cut -c 9- | xargs rm -rf)
else
rm -rf source
find source/ ! -name '*build.sh*' --delete
fi
echo