From 30e24c2687751d3ae09887e75cb5acaf3da9a21f Mon Sep 17 00:00:00 2001 From: IntegratedQuantum Date: Sun, 23 Feb 2025 11:26:11 +0100 Subject: [PATCH] Explicitly specify the path of windows tar. Some people also have linux tar installed, which of course works differently. I hate windows. --- debug_windows.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug_windows.bat b/debug_windows.bat index 73de3f27..c889aee4 100644 --- a/debug_windows.bat +++ b/debug_windows.bat @@ -35,7 +35,7 @@ if not "%version%" == "%currVersion%" ( exit /b 1 ) echo Extracting zip file... - tar -xf compiler\archive.zip --directory compiler + C:\Windows\System32\tar.exe -xf compiler\archive.zip --directory compiler ren compiler\%version% zig del compiler\archive.zip echo %version%> compiler\version.txt