* make START_DIR configurable * fix permissions order * fix start dir bug * fix logic * make START_DIR * cool loggins * reuse clone function * i'm a bash noob * even more of a bash noob * add hashed info * add ability to add tasks * add vs code instructions for task * rclone fix * document vscode tasks * fix labels * mention additional variables * add better docs for dev tools * support rclone flags
33 lines
663 B
JSON
33 lines
663 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "push_remote",
|
|
"type": "shell",
|
|
"command": "sh /home/coder/push_remote.sh",
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"problemMatcher": [],
|
|
"options": {
|
|
"statusbar": {
|
|
"label": "$(repo-push) rclone: push"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "pull_remote",
|
|
"type": "shell",
|
|
"command": "sh /home/coder/pull_remote.sh",
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"problemMatcher": [],
|
|
"options": {
|
|
"statusbar": {
|
|
"label": "$(repo-pull) rclone: pull"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |