Files
2022NoWayHome/.vscode/tasks.json
T
nathanrsxtn 3048a0567c Add PathPlanner task
Remove simulation files
2022-02-28 12:06:36 -07:00

32 lines
750 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "downloadDeployDirectory",
"type": "shell",
"command": "scp -prv lvuser@roboRIO-4388-FRC.local:/home/lvuser/deploy ./src/main/",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
},
"problemMatcher": []
},
{
"label": "pathPlanner",
"type": "process",
"command": "open -n /Applications/PathPlanner.app",
"presentation": {
"echo": false,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
}
]
}