From e251d3cfe0ff09a9700ff0aefe33f01acde1e2b2 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Sat, 11 Jun 2022 23:37:33 +0200 Subject: [PATCH] chore: exclude .DS_Store files in build.zip (#887) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3efb71e42..e2ef91d9b 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "format:check": "npm run format:base -- --check", "lint": "eslint --ignore-path .gitignore src", "lint:fix": "npm run lint -- --fix", - "build.zip": "cd ./dist && zip -r mainsail.zip ./ -x */\\.DS_Store ./ && cd ..", + "build.zip": "cd ./dist && zip -r mainsail.zip ./ -x '**.DS_Store' ./ && cd ..", "i18n-extract": "vue-i18n-extract use-config", "start": "vite preview", "test": "npm run build && cypress run",