From 14a2452acc9111aaac2aaaee482675b3f0a84731 Mon Sep 17 00:00:00 2001 From: Daan Poron Date: Tue, 23 Apr 2024 16:20:36 +0200 Subject: [PATCH] fix: add settings to make sure we have the right PATH inside the terminal --- .vscode/settings.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7ba4eb0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "terminal.integrated.env.linux": { + "PATH": "${workspaceFolder}/build/bin:${env:PATH}" + } +}