fix uninstall commands for sh-based OSes

This commit is contained in:
Lephenixnoir 2021-01-29 19:06:24 +01:00
parent 6d31401434
commit 7574f3adfc
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@ install:
@ fxsdk build-cg install
uninstall:
@ if [[ -e build-fx/install_manifest.txt ]]; then \
@ if [ -e build-fx/install_manifest.txt ]; then \
xargs rm -f < build-fx/install_manifest.txt; \
fi
@ if [[ -e build-cg/install_manifest.txt ]]; then \
@ if [ -e build-cg/install_manifest.txt ]; then \
xargs rm -f < build-cg/install_manifest.txt; \
fi