From efd7827705ea719b3d1527dfc3ed06fd85d691c5 Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Fri, 29 Jan 2021 19:05:32 +0100 Subject: [PATCH] build: fix uninstall command for sh-based OSes --- giteapc.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/giteapc.make b/giteapc.make index 4727cfa..4cadbbb 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