tasks.json patch

This commit is contained in:
h4570
2022-07-23 14:34:17 +02:00
parent 22998fbbef
commit 1ae7939cc3
+2 -2
View File
@@ -18,7 +18,7 @@
{ {
"type": "shell", "type": "shell",
"label": "1. Copy source code to docker volume", "label": "1. Copy source code to docker volume",
"command": "docker exec -t tyra-compiler sh -c 'rsync -ac --delete --exclude \".git\" --exclude \"docs\" --exclude \".vscode\" --exclude \"tools\" --exclude \"*obj*/**\" --exclude \"*bin*/**\" /host/ /src/'" "command": "docker exec -t tyra-compiler sh -c 'rsync -ac --delete --exclude \".git\" --exclude \"docs\" --exclude \".vscode\" --exclude \"tools\" --exclude \"obj\" --exclude \"bin\" /host/ /src/'"
}, },
{ {
"type": "shell", "type": "shell",
@@ -34,7 +34,7 @@
{ {
"type": "shell", "type": "shell",
"label": "3. Copy binaries to host", "label": "3. Copy binaries to host",
"command": "docker exec -t tyra-compiler sh -c 'rsync -zac --include=\"*/\" --include=\"*bin*/**\" --exclude=\"*\" /src/ /host/'", "command": "docker exec -t tyra-compiler sh -c 'rsync -zac --include=\"*/\" --include=\"bin/**\" --exclude=\"*\" /src/ /host/'"
}, },
{ {
"type": "shell", "type": "shell",