mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 05:23:01 -04:00
dev-build/just: die some more
Adding missing || die on feedback from antecrescent.
See-also: c346c9b425
Signed-off-by: Joe Kappus <joe@wt.gd>
This commit is contained in:
@@ -209,21 +209,21 @@ src_install() {
|
|||||||
cargo_src_install
|
cargo_src_install
|
||||||
|
|
||||||
mkdir -p man || die
|
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/*
|
doman man/*
|
||||||
|
|
||||||
einstalldocs
|
einstalldocs
|
||||||
|
|
||||||
# bash-completion
|
# 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}"
|
newbashcomp "completions/${PN}.bash" "${PN}"
|
||||||
|
|
||||||
# zsh-completion
|
# 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}"
|
newzshcomp "completions/${PN}.zsh" "_${PN}"
|
||||||
|
|
||||||
# fish-completion
|
# 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"
|
dofishcomp "completions/${PN}.fish"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user