From 97c1d748be4ed5d95e3a68b2fe4a9ef7837f19aa Mon Sep 17 00:00:00 2001 From: Billy O'Neal Date: Thu, 11 Jan 2024 15:42:29 -0800 Subject: [PATCH] Fix paths with single quotes in bootstrap. (#36115) Fixes https://github.com/microsoft/vcpkg/issues/25058 --- bootstrap-vcpkg.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-vcpkg.bat b/bootstrap-vcpkg.bat index 1f9baa3d0b..54e0b85a22 100644 --- a/bootstrap-vcpkg.bat +++ b/bootstrap-vcpkg.bat @@ -1,2 +1,2 @@ @echo off -powershell.exe -NoProfile -ExecutionPolicy Bypass "& {& '%~dp0scripts\bootstrap.ps1' %*}" +powershell.exe -NoProfile -ExecutionPolicy Bypass "& {& \"%~dp0scripts\bootstrap.ps1\" %*}"