浏览代码

Update env

bryan 3 年之前
父节点
当前提交
a3323c6d53
共有 2 个文件被更改,包括 23 次插入0 次删除
  1. 1 0
      .gitignore
  2. 22 0
      .vscode/launch.json

+ 1 - 0
.gitignore

@@ -3,3 +3,4 @@ bin/
 files/
 patches/
 .lock
+make.log

+ 22 - 0
.vscode/launch.json

@@ -0,0 +1,22 @@
+{
+    // Use IntelliSense to learn about possible attributes.
+    // Hover to view descriptions of existing attributes.
+    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+    "version": "0.2.0",
+    "configurations": [
+        {
+            "type": "bashdb",
+            "request": "launch",
+            "terminalKind": "integrated",
+            "name": "Bash-Debug (simplest configuration)",
+            "program": "${file}",
+            "args": [
+                "-d", 
+                "-p", 
+                "r4s", 
+                "--ssh-backup", 
+                "root@router.lan"
+            ]
+        }
+    ]
+}