From 6838b0d00c1beb9a4cde636cae6a1a80c8194a2d Mon Sep 17 00:00:00 2001 From: redatman Date: Sat, 3 Aug 2024 20:01:02 +0800 Subject: [PATCH] Fix: Prevent .DS_Store files from being included in package The `dev_deploy.sh` script was mistakenly including `.DS_Store` files in the Sublime Text package. This change excludes those files, preventing them from cluttering the package and causing potential issues. --- dev_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_deploy.sh b/dev_deploy.sh index 68b4c76..4943d56 100644 --- a/dev_deploy.sh +++ b/dev_deploy.sh @@ -1,4 +1,4 @@ # local development deploy -zip -r Simplenote.sublime-package . -x ".env*" ".git/*" ".github/*" ".gitignore" ".idea/*" ".vscode/*" ".pytest_cache/*" "pyproject.toml" "package-lock.json" "package.json" "node_modules/*" ".env.*" ".DS_Store" "assets/*" "*__pycache__/*" "tmp/*" "tests/*" "logs/*" "sublime_api.py" "dev_deploy.sh" "package-metadata.json" +zip -r Simplenote.sublime-package . -x ".env*" ".git/*" ".github/*" ".gitignore" ".idea/*" ".vscode/*" ".pytest_cache/*" "pyproject.toml" "package-lock.json" "package.json" "node_modules/*" ".env.*" "*.DS_Store" "assets/*" "*__pycache__/*" "tmp/*" "tests/*" "logs/*" "sublime_api.py" "dev_deploy.sh" "package-metadata.json" mv Simplenote.sublime-package $HOME/Library/Application\ Support/Sublime\ Text/Installed\ Packages/Simplenote.sublime-package