Skip to content

Commit

Permalink
Fix: Prevent .DS_Store files from being included in package
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
RedAtman committed Aug 3, 2024
1 parent 2951f3c commit 6838b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev_deploy.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6838b0d

Please sign in to comment.