mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 21:13:04 +08:00
Fix vcpkg_find_acquire_program(NUGET) (#5871)
Set the ARCHIVE and NOEXTRACT variables so that downloading works. Also HASH is case-sensitive, so make it lower case. vcpkg_find_acquire_program(NUGET) was failing with the following error message: -- Downloading https://dist.nuget.org/win-x86-commandline/v4.8.1/nuget.exe... CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:159 (file): file DOWNLOAD error: cannot create directory 'C:/Users/david/Documents/GitHub/vcpkg/downloads/temp/C:/Users/david/Documents/GitHub/vcpkg/downloads' - Specify file by full path name and verify that you have directory creation and file write privileges. Call Stack (most recent call first): scripts/cmake/vcpkg_find_acquire_program.cmake:255 (vcpkg_download_distfile) ports/gobject-introspection/portfile.cmake:20 (vcpkg_find_acquire_program) scripts/ports.cmake:71 (include)
This commit is contained in:
parent
961b2699b1
commit
0fffb47ed0
@ -136,7 +136,9 @@ function(vcpkg_find_acquire_program VAR)
|
|||||||
set(PATHS "${DOWNLOADS}/tools/nuget")
|
set(PATHS "${DOWNLOADS}/tools/nuget")
|
||||||
set(BREW_PACKAGE_NAME "nuget")
|
set(BREW_PACKAGE_NAME "nuget")
|
||||||
set(URL "https://dist.nuget.org/win-x86-commandline/v4.8.1/nuget.exe")
|
set(URL "https://dist.nuget.org/win-x86-commandline/v4.8.1/nuget.exe")
|
||||||
set(HASH 42CB744338AF8DECC033A75BCE5B4C4DF28E102BAFC45F9A8BA86D7BC010F5B43EBACAE80D7B28C4F85AC900EEFC2A349620AE65F27F6CA1C21C53B63B92924B)
|
set(ARCHIVE "nuget.exe")
|
||||||
|
set(NOEXTRACT ON)
|
||||||
|
set(HASH 42cb744338af8decc033a75bce5b4c4df28e102bafc45f9a8ba86d7bc010f5b43ebacae80d7b28c4f85ac900eefc2a349620ae65f27f6ca1c21c53b63b92924b)
|
||||||
elseif(VAR MATCHES "MESON")
|
elseif(VAR MATCHES "MESON")
|
||||||
set(PROGNAME meson)
|
set(PROGNAME meson)
|
||||||
set(REQUIRED_INTERPRETER PYTHON3)
|
set(REQUIRED_INTERPRETER PYTHON3)
|
||||||
|
Loading…
Reference in New Issue
Block a user