Files
2022NoWayHome/.vscode/tasks.json
T
2022-03-08 16:31:42 -07:00

37 lines
883 B
JSON

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