mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
guix: don't include feather.exe in installer zip
This commit is contained in:
parent
af4259a2bd
commit
96bbdd126a
1 changed files with 11 additions and 2 deletions
|
@ -376,9 +376,18 @@ mkdir -p "$DISTSRC"
|
||||||
*darwin*)
|
*darwin*)
|
||||||
make -C build install/strip ${V:+V=1}
|
make -C build install/strip ${V:+V=1}
|
||||||
;;
|
;;
|
||||||
*)
|
*.installer)
|
||||||
make -C build install ${V:+V=1}
|
|
||||||
;;
|
;;
|
||||||
|
*)
|
||||||
|
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
|
esac
|
||||||
|
|
||||||
(
|
(
|
||||||
|
|
Loading…
Reference in a new issue