ci: windows: update tar command line parameter order

you have got to be kidding me
This commit is contained in:
Andrew Kelley 2021-10-01 22:27:16 -07:00
parent 86bb09a0ff
commit c7b32eb99a

View File

@ -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