diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-04-01 10:28:10 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-04-01 10:28:10 +0200 |
commit | 7762c5683f91a066cf833a19e7c0153942395cb1 (patch) | |
tree | 9c7b2b7739b9d9a77d24fc25c1bf8dd972755eda /contrib | |
parent | 1021e4cc6877f66729e01a6662d5877e718ed276 (diff) |
build: Fix "ERR: Unsigned tarballs do not exist"
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/guix/guix-codesign | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/guix/guix-codesign b/contrib/guix/guix-codesign index d726578277..3279d431aa 100755 --- a/contrib/guix/guix-codesign +++ b/contrib/guix/guix-codesign @@ -152,7 +152,7 @@ outdir_for_host() { unsigned_tarball_for_host() { case "$1" in *mingw*) - echo "$(outdir_for_host "$1")/${DISTNAME}-win-unsigned.tar.gz" + echo "$(outdir_for_host "$1")/${DISTNAME}-win64-unsigned.tar.gz" ;; *darwin*) echo "$(outdir_for_host "$1")/${DISTNAME}-${1}-unsigned.tar.gz" |