From 23659287bd74aed79dc712d946e00fe4320a8098 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Tue, 10 Dec 2019 19:12:59 +0100 Subject: [PATCH] windows: vcpkg/mxnet: work around vcpkg being broken af --- windows1809/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows1809/base/Dockerfile b/windows1809/base/Dockerfile index b34fd69..7d60847 100644 --- a/windows1809/base/Dockerfile +++ b/windows1809/base/Dockerfile @@ -44,7 +44,7 @@ RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tl RUN $vcpkg_dir = 'C:/vcpkg'; \ git clone https://git.imp.fu-berlin.de/bioroboticslab/robofish/vcpkg.git $vcpkg_dir; \ cd $vcpkg_dir; \ - git checkout c05eb1ab83ddb9d4799fb9f3cd10bb385f05469b; \ + git checkout ed03d814da4c8edf09caba90c15741f13f436f9e; \ ./scripts/bootstrap.ps1; \ [Environment]::SetEnvironmentVariable('VCPKG_DIR', "\"$vcpkg_dir\"", [EnvironmentVariableTarget]::Machine); ADD powershell/30-vcpkg-cmake.ps1 /Windows/System32/WindowsPowerShell/v1.0/profile.d/30-vcpkg-cmake.ps1 -- GitLab