commit: 5ec708767ff0621685bff86afea4524691af1a3c
Author: ingenarel <ingenarelitems <AT> gmail <DOT> com>
AuthorDate: Sat Nov 29 17:52:09 2025 +0000
Commit: Saad Abdullah <ingenarelitems <AT> gmail <DOT> com>
CommitDate: Sat Nov 29 17:52:09 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ec70876
dev-util/stripe-cli: install completion files unconditionally
Signed-off-by: ingenarel <ingenarelitems <AT> gmail.com>
dev-util/stripe-cli/stripe-cli-9999.ebuild | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/dev-util/stripe-cli/stripe-cli-9999.ebuild
b/dev-util/stripe-cli/stripe-cli-9999.ebuild
index baef2d6710..0029d45ba8 100644
--- a/dev-util/stripe-cli/stripe-cli-9999.ebuild
+++ b/dev-util/stripe-cli/stripe-cli-9999.ebuild
@@ -31,7 +31,6 @@ LICENSE="Apache-2.0"
# dependency licenses:
LICENSES+=" Apache-2.0 BSD-2-Clause BSD-3-Clause ISC MIT MPL-2.0 Unlicense "
SLOT="0"
-IUSE="bash-completion zsh-completion"
BDEPEND=">=dev-lang/go-1.24.1"
@@ -45,12 +44,8 @@ src_install() {
# disables telemetry
doenvd "$FILESDIR/99$PN"
- if use bash-completion ; then
- "bin/${MY_PN}" completion --shell bash
- newbashcomp "${MY_PN}-completion.bash" "$MY_PN"
- fi
- if use zsh-completion ; then
- "bin/${MY_PN}" completion --shell zsh
- newzshcomp "${MY_PN}-completion.zsh" "_$MY_PN"
- fi
+ "bin/${MY_PN}" completion --shell bash
+ newbashcomp "${MY_PN}-completion.bash" "$MY_PN"
+ "bin/${MY_PN}" completion --shell zsh
+ newzshcomp "${MY_PN}-completion.zsh" "_$MY_PN"
}