Update tasks.json

fixes rsync issue and prevents files from disappearing:
rsync warning: some files vanished before they could be transferred (code 24)
This commit is contained in:
Guido Diego Quispe Robles
2023-12-28 09:16:44 -03:00
parent ab08a385a6
commit e07cfc502a
+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-game-compiler sh -c 'rsync -ac --delete --exclude \".git\" --exclude \".vscode\" --exclude \"*obj*/**\" --exclude \"*bin*/**\" /host/ /src/'" "command": "docker exec -t tyra-game-compiler sh -c 'rsync -ac --delete --exclude=\".git\" --exclude=\".vscode\" --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-game-compiler sh -c 'rsync -zac --include=\"*/\" --include=\"*bin*/**\" --exclude=\"*\" /src/ /host/'", "command": "docker exec -t tyra-game-compiler sh -c 'rsync -zac --include=\"*/\" --include=\"*bin*/**\" --exclude=\"*\" /src/ /host/'"
}, },
{ {
"type": "shell", "type": "shell",