diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2021-02-09 11:32:06 +0100 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2021-02-09 11:32:06 +0100 |
commit | 19e830c003bf03afa7e59fa8a0b66fa212e56ecb (patch) | |
tree | 67ed0c95ff0943550db5a524fe884f7e5d5ad611 | |
parent | ecb77ba06f4e4029848a841f15ecf2185982b833 (diff) | |
download | hoverbit-ble-19e830c003bf03afa7e59fa8a0b66fa212e56ecb.tar.gz hoverbit-ble-19e830c003bf03afa7e59fa8a0b66fa212e56ecb.zip |
:hammer: Fix regex
-rwxr-xr-x | postbuild.sh | 2 |
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 |