Skip to content

Commit

Permalink
path.resolve() doesn't work properly on Windows
Browse files Browse the repository at this point in the history
on python3.9 - it should make the path absolute, but it doesn't.
python/cpython#83271
  • Loading branch information
olsen232 committed Nov 11, 2022
1 parent e08fba8 commit af0ee99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcpkg-vendor/fix_vendor_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit af0ee99

Please sign in to comment.