From: tobtoht Date: Fri, 22 Dec 2023 15:25:18 +0000 (+0100) Subject: guix: don't include feather.exe in installer zip X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=96bbdd126ad76b93e6dcc37cbf9ba4633e9d56d7;p=gamesguru%2Ffeather.git guix: don't include feather.exe in installer zip --- diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index 6e59b4da..f3372947 100755 --- a/contrib/guix/libexec/build.sh +++ b/contrib/guix/libexec/build.sh @@ -376,9 +376,18 @@ mkdir -p "$DISTSRC" *darwin*) make -C build install/strip ${V:+V=1} ;; - *) - make -C build install ${V:+V=1} + *.installer) + ;; + *) + case "$OPTIONS" in + installer) + # do nothing, we don't want feather.exe in the final .zip + ;; + *) + make -C build install ${V:+V=1} + ;; + esac esac (