1 parent 2652faf commit a2c00b7Copy full SHA for a2c00b7
1 file changed
.vscode/tasks.json
@@ -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