From 71c5e96dc18a6d55b81a11e8e8e4787e091a1adf Mon Sep 17 00:00:00 2001 From: Moritz Gmeiner Date: Tue, 3 Sep 2024 16:57:47 +0200 Subject: [PATCH] fixed launch.json --- .vscode/launch.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cfb04d4..2bf406f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,15 +7,15 @@ { "type": "lldb", "request": "launch", - "name": "Debug executable 'rlox2'", + "name": "Debug executable 'rlox'", "cargo": { "args": [ "build", - "--bin=rlox2", + "--bin=rlox", "--package=rlox2" ], "filter": { - "name": "rlox2", + "name": "rlox", "kind": "bin" } }, @@ -23,4 +23,4 @@ "cwd": "${workspaceFolder}" } ] -} \ No newline at end of file +}