From ce9b0fc905eff7dbe278f4e269ad2769e8e5450d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Brezi=C5=84ski?= Date: Sun, 8 May 2022 01:46:26 +0200 Subject: [PATCH] use backslash instead of forward slash in windows example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f527e4d..4cd786da 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ An example that installs llvm, cmake, ninja, ccache, and vcpkg: ```ps1 # windows example (open shell as admin) curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.14.0/setup_cpp_windows.exe" -./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true +.\setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true RefreshEnv.cmd # activate cpp environment variables ```