From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2681415817D for ; Sun, 9 Jun 2024 16:36:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7326CE2A17; Sun, 9 Jun 2024 16:36:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 550A9E2A17 for ; Sun, 9 Jun 2024 16:36:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 667B5335D75 for ; Sun, 9 Jun 2024 16:36:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0980C1BFE for ; Sun, 9 Jun 2024 16:36:44 +0000 (UTC) From: "Joe Kappus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joe Kappus" Message-ID: <1717950899.fc76788b5f1d0da163bcb055e4ff98feb755c426.joe@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-build/just/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-build/just/just-1.28.0.ebuild X-VCS-Directories: dev-build/just/ X-VCS-Committer: joe X-VCS-Committer-Name: Joe Kappus X-VCS-Revision: fc76788b5f1d0da163bcb055e4ff98feb755c426 X-VCS-Branch: dev Date: Sun, 9 Jun 2024 16:36:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a0e5f66-b95e-49e5-baab-2660f08078e4 X-Archives-Hash: 941b8146bc1c6e165dddb5a1e4fcfb1f commit: fc76788b5f1d0da163bcb055e4ff98feb755c426 Author: Joe Kappus wt gd> AuthorDate: Sun Jun 9 16:34:59 2024 +0000 Commit: Joe Kappus wt gd> CommitDate: Sun Jun 9 16:34:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fc76788b dev-build/just: die some more Adding missing || die on feedback from antecrescent. See-also: https://github.com/gentoo/guru/commit/c346c9b42525ac871f4c9c5e25dfcf43931e3a35 Signed-off-by: Joe Kappus wt.gd> dev-build/just/just-1.28.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-build/just/just-1.28.0.ebuild b/dev-build/just/just-1.28.0.ebuild index 9dabe06bb..e49394440 100644 --- a/dev-build/just/just-1.28.0.ebuild +++ b/dev-build/just/just-1.28.0.ebuild @@ -209,21 +209,21 @@ src_install() { cargo_src_install mkdir -p man || die - ./target/$(usex debug debug release)/just --man > man/just.1 + ./target/$(usex debug debug release)/just --man > man/just.1 || die doman man/* einstalldocs # bash-completion - ./target/$(usex debug debug release)/just --completions bash > completions/just.bash + ./target/$(usex debug debug release)/just --completions bash > completions/just.bash || die newbashcomp "completions/${PN}.bash" "${PN}" # zsh-completion - ./target/$(usex debug debug release)/just --completions zsh > completions/just.zsh + ./target/$(usex debug debug release)/just --completions zsh > completions/just.zsh || die newzshcomp "completions/${PN}.zsh" "_${PN}" # fish-completion - ./target/$(usex debug debug release)/just --completions fish > completions/just.fish + ./target/$(usex debug debug release)/just --completions fish > completions/just.fish || die dofishcomp "completions/${PN}.fish" }