From dc715af53b9f7ef1404785f97842fa78ea2662d8 Mon Sep 17 00:00:00 2001 From: Matt Valentine-House Date: Wed, 8 Feb 2023 11:00:50 +0000 Subject: [PATCH] Tell VSCode to debug test.rb by default [ci-skip] --- misc/.vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/.vscode/launch.json b/misc/.vscode/launch.json index a059155ab2..51bfef09d7 100644 --- a/misc/.vscode/launch.json +++ b/misc/.vscode/launch.json @@ -6,7 +6,7 @@ "name": "Run ruby", "request": "launch", "program": "${workspaceFolder}/ruby", - "args": ["-e", "p 1"], + "args": ["test.rb"], "preLaunchTask": "${defaultBuildTask}" } ]