aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2021-02-09 11:32:06 +0100
committerJakob Stendahl <jakob.stendahl@outlook.com>2021-02-09 11:32:06 +0100
commit19e830c003bf03afa7e59fa8a0b66fa212e56ecb (patch)
tree67ed0c95ff0943550db5a524fe884f7e5d5ad611
parentecb77ba06f4e4029848a841f15ecf2185982b833 (diff)
downloadhoverbit-ble-19e830c003bf03afa7e59fa8a0b66fa212e56ecb.tar.gz
hoverbit-ble-19e830c003bf03afa7e59fa8a0b66fa212e56ecb.zip
:hammer: Fix regex
-rwxr-xr-xpostbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/postbuild.sh b/postbuild.sh
index 87fcd08..02c99c3 100755
--- a/postbuild.sh
+++ b/postbuild.sh
@@ -20,7 +20,7 @@ sed -i".bak" "s/{{ VERSION }}/$VERSION/g" service-worker.js
tput setaf 4; echo "> Add cache-files to webmanifest..."; tput sgr0
cache_files="";
for file in *; do
- if [[ "$file" =~ (manifest.webmanifest|*.git|*.bak) ]]; then
+ if [[ "$file" =~ (manifest.webmanifest|.git|.bak) ]]; then
continue
fi
if [[ "$cache_files" == "" ]]; then