Skip to content

Commit e07cfc5

Browse files
committed
Update tasks.json
fixes rsync issue and prevents files from disappearing: rsync warning: some files vanished before they could be transferred (code 24)
1 parent ab08a38 commit e07cfc5

File tree

1 file changed

+2
-2
lines changed
  • template/.vscode/configurations/windows-docker

1 file changed

+2
-2
lines changed

template/.vscode/configurations/windows-docker/tasks.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
"type": "shell",
2020
"label": "1. Copy source code to docker volume",
21-
"command": "docker exec -t tyra-game-compiler sh -c 'rsync -ac --delete --exclude \".git\" --exclude \".vscode\" --exclude \"*obj*/**\" --exclude \"*bin*/**\" /host/ /src/'"
21+
"command": "docker exec -t tyra-game-compiler sh -c 'rsync -ac --delete --exclude=\".git\" --exclude=\".vscode\" --exclude=\"*obj*/**\" --exclude=\"*bin*/**\" /host/ /src/'"
2222
},
2323
{
2424
"type": "shell",
@@ -34,7 +34,7 @@
3434
{
3535
"type": "shell",
3636
"label": "3. Copy binaries to host",
37-
"command": "docker exec -t tyra-game-compiler sh -c 'rsync -zac --include=\"*/\" --include=\"*bin*/**\" --exclude=\"*\" /src/ /host/'",
37+
"command": "docker exec -t tyra-game-compiler sh -c 'rsync -zac --include=\"*/\" --include=\"*bin*/**\" --exclude=\"*\" /src/ /host/'"
3838
},
3939
{
4040
"type": "shell",

0 commit comments

Comments
 (0)