]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
guix: don't include feather.exe in installer zip
authortobtoht <tob@featherwallet.org>
Fri, 22 Dec 2023 15:25:18 +0000 (16:25 +0100)
committertobtoht <tob@featherwallet.org>
Fri, 22 Dec 2023 15:25:18 +0000 (16:25 +0100)
contrib/guix/libexec/build.sh

index 6e59b4da662f710e6a6cb0501d111142aca1cba5..f3372947846339b791ccbf1f1d7541e77f4a2c00 100755 (executable)
@@ -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
 
     (