From 3d47dc1fb75f53737a5d4798d3aa578c810f0c49 Mon Sep 17 00:00:00 2001 From: Spirit Date: Mon, 19 Aug 2024 21:05:42 -0700 Subject: [PATCH] make curl show errors and fail --- WSL-install-void.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WSL-install-void.bat b/WSL-install-void.bat index 5028f1a..fe40844 100644 --- a/WSL-install-void.bat +++ b/WSL-install-void.bat @@ -11,16 +11,16 @@ mkdir .void-on-WSL2.temp cd .void-on-WSL2.temp echo downloading 7zr.exe... -curl.exe -Ls --remote-name --remove-on-error https://7-zip.org/a/7zr.exe +curl.exe -LSfs --remote-name --remove-on-error https://7-zip.org/a/7zr.exe echo downloading void-x86_64-ROOTFS... -curl.exe -Ls --remote-name --remove-on-error https://repo-default.voidlinux.org/live/current/void-x86_64-ROOTFS-20240314.tar.xz +curl.exe -Lsfs --remote-name --remove-on-error https://repo-default.voidlinux.org/live/current/void-x86_64-ROOTFS-20240314.tar.xz 7zr.exe x void-x86_64-ROOTFS-20240314.tar.xz -oextracted wsl.exe --import %DISTRONAME% %STORAGEPATH% extracted\void-x86_64-ROOTFS-20240314.tar echo downloading init-void.sh and setup-void.sh... -curl.exe -Ls --remote-name --remove-on-error https://raw.githubusercontent.com/spirit-x64/scripts/main/init-void.sh -curl.exe -Ls --remote-name --remove-on-error https://raw.githubusercontent.com/spirit-x64/scripts/main/setup-void.sh +curl.exe -Lsfs --remote-name --remove-on-error https://raw.githubusercontent.com/spirit-x64/scripts/main/init-void.sh +curl.exe -Lsfs --remote-name --remove-on-error https://raw.githubusercontent.com/spirit-x64/scripts/main/setup-void.sh wsl -d %DISTRONAME% -e sh -c "USERNAME=%USER% ./init-void.sh --wsl"