Skip to content

Commit a2c00b7

Browse files
committed
Update
1 parent 2652faf commit a2c00b7

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
mkdir -p /Users/nikolaiherrmann/Documents/SpoolmanScalePro-Pi/.vscode
2+
cat > /Users/nikolaiherrmann/Documents/SpoolmanScalePro-Pi/.vscode/tasks.json << 'EOF'
3+
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Push to GitHub",
8+
"type": "shell",
9+
"command": "git add . && git commit -m 'Update' && git push",
10+
"group": "build",
11+
"presentation": {
12+
"reveal": "always",
13+
"panel": "new"
14+
},
15+
"problemMatcher": []
16+
}
17+
]
18+
}
19+
EOF

0 commit comments

Comments
 (0)