From d8e915131c4f043423b88ec66d6ce9d5b82b3509 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 23 Oct 2020 14:15:13 +0200 Subject: [PATCH] Clean doesn't remove the generated assets anymore --- .gitignore | 1 + clean.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8ed6106..e35aefa 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ node_modules .idea/* scratch assets/editor-layer-index.json +assets/generated/* diff --git a/clean.sh b/clean.sh index 8736264..e9b039e 100755 --- a/clean.sh +++ b/clean.sh @@ -14,7 +14,8 @@ # rm Customizations/*/*/*.js rm *.webmanifest -rm assets/generated/* + +# rm assets/generated/* for f in ./*.html; do if [[ "$f" == "./index.html" ]] || [[ "$f" == "./land.html" ]] || [[ "$f" == "./test.html" ]] || [[ "$f" == "./preferences.html" ]] || [[ "$f" == "./customGenerator.html" ]]