From 5bd7ead2cabbd6cefee8b0b38d90a1f5cbcde18f Mon Sep 17 00:00:00 2001 From: josselinonduty Date: Sun, 2 Mar 2025 15:13:36 +0900 Subject: [PATCH] chore: remove .vscode from ignore files while creating a patch --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2190391..b37cefc 100644 --- a/Makefile +++ b/Makefile @@ -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'."