From c4119f92656e4be534d6b361cd64d51810d29498 Mon Sep 17 00:00:00 2001 From: bryan Date: Sat, 6 Jun 2020 23:43:58 -0400 Subject: [PATCH] Add vscode tasks/settings --- .vscode/settings.json | 3 +++ .vscode/tasks.json | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100755 .vscode/settings.json create mode 100755 .vscode/tasks.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100755 index 0000000..6f714f0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "window.title": "openwrtBuild" +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100755 index 0000000..8c3dd6a --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,13 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Build RPi4 snapshot in toolbox", + "type": "shell", + "command": "toolboxRun -c openwrt ${file} --version snapshot --profile rpi-4", + "problemMatcher": [] + } + ] +} \ No newline at end of file