diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/bootstrap/bbot-bootstrap-msvc.bat | 7 |
1 files changed, 5 insertions, 2 deletions
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 |