chore: remove .vscode from ignore files while creating a patch

This commit is contained in:
josselinonduty 2025-03-02 15:13:36 +09:00
parent 849f5eb11b
commit 5bd7ead2ca
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ build_snap_arm64:
patch-new: install_deps
@echo "Setting up the development environment..."
@cd $(APP_DIR) && echo "node_modules\n.vscode\n*.diff\n*.orig" > .gitignore && git init && git add .
@cd $(APP_DIR) && echo "node_modules\n*.diff\n*.orig" > .gitignore && git init && git add .
@cd $(APP_DIR) && git commit -m "initial commit"
@echo "You can now edit the sources in the $(APP_DIR) directory"
@echo "When you are done, commit your changes, run 'make patch-gen'."