From 7574f3adfcaa8f1960c37fb642785905a40d96b4 Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Fri, 29 Jan 2021 19:06:24 +0100 Subject: [PATCH] fix uninstall commands for sh-based OSes --- giteapc.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/giteapc.make b/giteapc.make index b531ce9..dccb68b 100644 --- a/giteapc.make +++ b/giteapc.make @@ -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