From 2ad82bf9870eafe79b16ee7e387ac129a23df4a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=C3=A4llberg?= Date: Sat, 16 May 2026 07:54:05 +0200 Subject: [PATCH] Fix broken gitignore in venv shell hook MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The gitignore file contained an escaped newline, which prevented the files from actually being ignored Signed-off-by: Andreas Källberg --- plugins/python/venvShellHook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/venvShellHook.sh b/plugins/python/venvShellHook.sh index 84c5ab10ee8..47eab9d6046 100755 --- a/plugins/python/venvShellHook.sh +++ b/plugins/python/venvShellHook.sh @@ -12,7 +12,7 @@ is_devbox_venv() { create_venv() { python -m venv "$VENV_DIR" --clear - echo "*\n.*" >> "$VENV_DIR/.gitignore" + echo -e "*\n.*" >> "$VENV_DIR/.gitignore" } # Check that Python version supports venv