From 1ae7939cc3a0bd4ef8fab918d8ca482ab64a3027 Mon Sep 17 00:00:00 2001 From: h4570 Date: Sat, 23 Jul 2022 14:34:17 +0200 Subject: [PATCH] tasks.json patch --- .vscode/configurations/windows-docker/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/configurations/windows-docker/tasks.json b/.vscode/configurations/windows-docker/tasks.json index 0546db7..cb6dd5c 100644 --- a/.vscode/configurations/windows-docker/tasks.json +++ b/.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-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", @@ -34,7 +34,7 @@ { "type": "shell", "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",