build: fix uninstall command for sh-based OSes

This commit is contained in:
Lephe 2021-01-29 19:04:37 +01:00
parent deeaaa499f
commit dce5ade4e1
Signed by: 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