From 96bbdd126ad76b93e6dcc37cbf9ba4633e9d56d7 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Fri, 22 Dec 2023 16:25:18 +0100 Subject: [PATCH] guix: don't include feather.exe in installer zip --- contrib/guix/libexec/build.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index 6e59b4d..f337294 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 (