mirror of
https://git.planet-casio.com/Lephenixnoir/libprof.git
synced 2024-12-12 20:53:41 +01:00
build: fix uninstall command for sh-based OSes
This commit is contained in:
parent
8c34abe3ca
commit
a9f1dc3ec8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue