strip target should apply to References, not Libraries

(applying it to Libraries would brick Everest)
This commit is contained in:
micycle 2023-05-08 21:30:36 -04:00 committed by yosh
parent d5cd363aa1
commit 1e7e3af492
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ release:
# This strips out code from reference assemblies so only the symbols are
# present for linking.
strip:
for file in ./Libraries/*; do mono-cil-strip "$$file"; done
for file in ./References/*; do mono-cil-strip "$$file"; done
# To compile the shaders, you will need:
# - wine64 to be installed,