Files
2022NoWayHome/.vscode/tasks.json
T

37 lines
883 B
JSON
Raw Normal View History

2022-02-16 22:31:00 -07:00
{
"version": "2.0.0",
"tasks": [
2022-02-25 01:33:32 -07:00
{
"label": "downloadDeployDirectory",
"type": "shell",
"command": "scp -prv lvuser@roboRIO-4388-FRC.local:/home/lvuser/deploy ./src/main/",
2022-03-08 16:31:42 -07:00
"windows": {
"command": "explorer.exe ftp://roboRIO-TEAM-frc.local/home/lvuser/deploy"
},
2022-02-25 01:33:32 -07:00
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
},
"problemMatcher": []
2022-02-28 12:06:36 -07:00
},
{
"label": "pathPlanner",
2022-02-28 17:56:17 -07:00
"type": "shell",
"osx": {
"command": "open -n /Applications/PathPlanner.app"
},
2022-02-28 12:06:36 -07:00
"presentation": {
"echo": false,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
2022-02-25 01:33:32 -07:00
}
2022-02-16 22:31:00 -07:00
]
}