From 01d878f9337abcee9750a001e666a519abc090df Mon Sep 17 00:00:00 2001 From: kayomn Date: Mon, 3 Oct 2022 23:16:58 +0100 Subject: [PATCH] Remove hardcoded hash from VS Code launch config --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a37980f..195c1f0 100755 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,7 @@ "name": "Test", "type": "gdb", "request": "launch", - "target": "${workspaceFolder}/zig-cache/o/b57ef32c79a05339fbe4a8eb648ff6df/test", + "target": "$(find zig-cache -name test) src/main.zig", "arguments": "main.zig", "cwd": "${workspaceRoot}", "valuesFormatting": "parseText",