From af0ee997a7afc21b0c3bb4206b89f2ee194d6491 Mon Sep 17 00:00:00 2001 From: Andrew Olsen Date: Fri, 11 Nov 2022 15:45:14 +1300 Subject: [PATCH] path.resolve() doesn't work properly on Windows on python3.9 - it should make the path absolute, but it doesn't. https://github.com/python/cpython/issues/83271 --- vcpkg-vendor/fix_vendor_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcpkg-vendor/fix_vendor_libs.py b/vcpkg-vendor/fix_vendor_libs.py index be0c01a7f..2e83f8a83 100755 --- a/vcpkg-vendor/fix_vendor_libs.py +++ b/vcpkg-vendor/fix_vendor_libs.py @@ -243,7 +243,7 @@ def pack_all(root_path, output_path): [ "7z", "a", - output_path.resolve(), + output_path.absolute(), *[f.name for f in contents_path.glob("*")], ], cwd=contents_path,