commit c7b32eb99a0e45054aa06a6f7170705c02837458 (tree)
parent 86bb09a0ff127429e990c3f869d394aae4e2da9f
Author: Andrew Kelley <andrew@ziglang.org>
Date: Fri, 1 Oct 2021 22:27:16 -0700
ci: windows: update `tar` command line parameter order
you have got to be kidding me
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/azure/windows_msvc_install b/ci/azure/windows_msvc_install
@@ -13,4 +13,4 @@ wget -nv "https://ziglang.org/deps/$TARBALL"
# If the first extraction fails, re-try it once; this can happen if the tarball
# contains symlinks that are in the table of contents before the files that
# they point to.
-tar -xf $TARBALL || tar -xf --overwrite $TARBALL
+tar -xf $TARBALL || tar --overwrite -xf $TARBALL