From de81e8bf1965f1fcf743f3016e79a9e1139fbf80 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 8 Oct 2018 11:42:52 +0200 Subject: [PATCH] VS Code again: Fix tasks.json for windows --- .vscode/tasks.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 594f0f7b..1d002482 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -16,7 +16,7 @@ "command": "cd ${workspaceFolder}/contrib/ports/unix/example_app/build && cmake --build ." }, "windows": { - "command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build & cmake --build ." + "command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build; cmake --build ." } }, { @@ -28,7 +28,7 @@ "command": "cd ${workspaceFolder}/contrib/ports/unix/example_app && mkdir build && cd build && cmake .." }, "windows": { - "command": "cd ${workspaceFolder}/contrib/ports/win32/example_app & mkdir build & cd build & cmake .." + "command": "cd ${workspaceFolder}/contrib/ports/win32/example_app; mkdir build; cd build; cmake .." } }, { @@ -40,7 +40,7 @@ "command": "cd ${workspaceFolder}/contrib/ports/unix/example_app/build && cmake --build . --target lwipdocs" }, "windows": { - "command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build & cmake --build . --target lwipdocs" + "command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build; cmake --build . --target lwipdocs" }, } ]