From c06600bc5e24389453d9a486c69d9746ae4fef23 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 1 May 2017 11:26:54 +0200 Subject: Prevent MSYS2 tar from forking for decompression --- etc/bootstrap/bbot-bootstrap-msvc.bat | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'etc') diff --git a/etc/bootstrap/bbot-bootstrap-msvc.bat b/etc/bootstrap/bbot-bootstrap-msvc.bat index b502c7b..1cf5215 100644 --- a/etc/bootstrap/bbot-bootstrap-msvc.bat +++ b/etc/bootstrap/bbot-bootstrap-msvc.bat @@ -86,10 +86,13 @@ move build2-baseutils-*-x86_64-windows %INSTALL% curl -s -S -O "tftp://%tftp%/build2-toolchain.tar.xz" @if errorlevel 1 goto error -tar -xf build2-toolchain.tar.xz +xz -d build2-toolchain.tar.xz @if errorlevel 1 goto error -del build2-toolchain.tar.xz +tar -xf build2-toolchain.tar +@if errorlevel 1 goto error + +del build2-toolchain.tar @if errorlevel 1 goto error -- cgit v1.1