From c6acdcdef8528dcc264c35d5f032821f1462be44 Mon Sep 17 00:00:00 2001 From: Alberto <32218025+blazorin@users.noreply.github.com> Date: Fri, 16 Sep 2022 17:39:49 +0200 Subject: [PATCH] Fix no packages found zsh interprets the [ and ] as special characters, you either need to escape them or write it as a string like "qt[latest]" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd6119b3..a54b3343 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Output will be in `build.release\bin\Release\` $ git submodule update --init $ brew install gcc6 $ ./submodules/vcpkg/bootstrap-vcpkg.sh -$ ./submodules/vcpkg/vcpkg install cpprestsdk[websockets] +$ ./submodules/vcpkg/vcpkg install "cpprestsdk[websockets]" $ mkdir build.release $ cd build.release $ cmake .. -DCMAKE_TOOLCHAIN_FILE=../submodules/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DUSE_CPPRESTSDK=true