From bea742ea587d9d4b926b123d8060e76da2169f90 Mon Sep 17 00:00:00 2001 From: "Arjen P. de Vries" Date: Sun, 10 Nov 2024 16:55:33 +0100 Subject: [PATCH] Update README.md Fixed `sh` command following current vcpkg repo; and added `-disableMetrics`. --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index e832216..7825350 100644 --- a/docs/README.md +++ b/docs/README.md @@ -14,7 +14,7 @@ DuckDB extensions uses VCPKG for dependency management. Enabling VCPKG is very s ```shell cd git clone https://github.com/Microsoft/vcpkg.git -sh ./vcpkg/scripts/bootstrap-vcpkg.sh +sh ./vcpkg/scripts/bootstrap.sh -disableMetrics export VCPKG_TOOLCHAIN_PATH=`pwd`/vcpkg/scripts/buildsystems/vcpkg.cmake ``` Note: VCPKG is only required for extensions that want to rely on it for dependency management. If you want to develop an extension without dependencies, or want to do your own dependency management, just skip this step. Note that the example extension uses VCPKG to build with a dependency for instructive purposes, so when skipping this step the build may not work without removing the dependency.