From e07cfc502aeddab8554804e9f6d254466cf56adc Mon Sep 17 00:00:00 2001 From: Guido Diego Quispe Robles Date: Thu, 28 Dec 2023 09:16:44 -0300 Subject: [PATCH] Update tasks.json fixes rsync issue and prevents files from disappearing: rsync warning: some files vanished before they could be transferred (code 24) --- template/.vscode/configurations/windows-docker/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/.vscode/configurations/windows-docker/tasks.json b/template/.vscode/configurations/windows-docker/tasks.json index 3ad0777..18e713a 100644 --- a/template/.vscode/configurations/windows-docker/tasks.json +++ b/template/.vscode/configurations/windows-docker/tasks.json @@ -18,7 +18,7 @@ { "type": "shell", "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", @@ -34,7 +34,7 @@ { "type": "shell", "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",