diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-03-16 12:03:22 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-03-16 12:03:22 +0100 |
commit | 53dd6165b8994301d638298906b006032e0bbe48 (patch) | |
tree | b59e1f134715cb35a811a2d1a3a6725fac6dc57a /contrib/guix | |
parent | 4b4b04a66d8f088f6aa9ec6398db49d40481910f (diff) |
guix: Use "win64" for Windows artifacts consistently
Diffstat (limited to 'contrib/guix')
-rwxr-xr-x | contrib/guix/libexec/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index af52a1ad8c..7340b0625f 100755 --- a/contrib/guix/libexec/build.sh +++ b/contrib/guix/libexec/build.sh @@ -439,8 +439,8 @@ mkdir -p "$DISTSRC" find . -print0 \ | sort --zero-terminated \ | tar --create --no-recursion --mode='u+rw,go+r-w,a+X' --null --files-from=- \ - | gzip -9n > "${OUTDIR}/${DISTNAME}-win-unsigned.tar.gz" \ - || ( rm -f "${OUTDIR}/${DISTNAME}-win-unsigned.tar.gz" && exit 1 ) + | gzip -9n > "${OUTDIR}/${DISTNAME}-win64-unsigned.tar.gz" \ + || ( rm -f "${OUTDIR}/${DISTNAME}-win64-unsigned.tar.gz" && exit 1 ) ) ;; esac |