From c7b32eb99a0e45054aa06a6f7170705c02837458 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 1 Oct 2021 22:27:16 -0700 Subject: [PATCH] ci: windows: update `tar` command line parameter order you have got to be kidding me --- ci/azure/windows_msvc_install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure/windows_msvc_install b/ci/azure/windows_msvc_install index 1aff93c387..2df445fe12 100644 --- 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