From cab23cf10ec2bb48500701e2ec831f6b6b50843f Mon Sep 17 00:00:00 2001 From: Flemmli97 <34157027+Flemmli97@users.noreply.github.com> Date: Fri, 22 Dec 2023 19:45:55 +0100 Subject: [PATCH] fix(vscode): Remove debug arg from vscode launch (#1660) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Flemmli97 Co-authored-by: Lucas Gonçalves Marchi --- .vscode/launch.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 82d7cfeb1ad..a8b2a1de9e5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,9 +14,6 @@ // "--package=example" ], }, - "args": [ - "debug" - ], "cwd": "${workspaceFolder}" }, { @@ -24,9 +21,6 @@ "type": "lldb", "request": "launch", "program": "${workspaceRoot}/target/debug/uplink", - "args": [ - "debug" - ], "cwd": "${workspaceRoot}" }, { @@ -36,7 +30,6 @@ "program": "${workspaceRoot}/target/debug/uplink", "args": [ "--with-mock", - "debug" ], "cwd": "${workspaceRoot}" }