fix(mkrelease) exclude *_vs90.sln and *.progen files

This commit is contained in:
Günter Obiltschnig 2024-02-18 18:58:30 +01:00
parent ef688babc2
commit 40a3e78b86

View File

@ -163,6 +163,13 @@ done
chmod -R +w ${target}
#
# Remove VS90 and progen
#
find ${target} -name '*.progen' -exec rm {} \;
find ${target} -iname '*_vs90.sln' -exec rm {} \;
#
# Generate Makefile
#