From 0993aaf099185d3d1ce07c25fa2464329e6c9f80 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Tue, 28 Jul 2020 16:58:04 -0700 Subject: [PATCH] jsonData dir create/destroy in Makefile: --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b46e52d..5400ace 100644 --- a/Makefile +++ b/Makefile @@ -174,6 +174,7 @@ installdash : index.php /usr/bin/apt update /usr/bin/apt install -y php-common php-fpm sqlite3 php-sqlite3 mkdir -p $(WWWDIR) + mkdir -p dashbaordV2/jsonData /bin/ln -f -s $(shell pwd)/index.php $(WWWDIR) /bin/ln -f -s $(shell pwd)/dashboardV2 $(WWWDIR) /bin/cp -f system/qndash.service $(SYSDIR) @@ -266,3 +267,4 @@ uninstalldash : /bin/rm -f $(WWWDIR)/index.php /bin/rm -f $(WWWDIR)/dashboardV2 /bin/rm -f $(CFGDIR)/qn.db + /bin/rm -rf dashboardV2/jsonData