Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/fnm/
Date: Thu, 08 Sep 2022 10:24:45
Message-Id: 1662631864.9512ae99f0aaa2bed79d40c1701df6eecbec6575.andrewammerlaan@gentoo
1 commit: 9512ae99f0aaa2bed79d40c1701df6eecbec6575
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 8 10:11:04 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 8 10:11:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9512ae99
7
8 dev-util/fnm: quote D variables
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 dev-util/fnm/fnm-1.31.0-r2.ebuild | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-util/fnm/fnm-1.31.0-r2.ebuild b/dev-util/fnm/fnm-1.31.0-r2.ebuild
16 index d09158fa2..5c556f3bc 100644
17 --- a/dev-util/fnm/fnm-1.31.0-r2.ebuild
18 +++ b/dev-util/fnm/fnm-1.31.0-r2.ebuild
19 @@ -402,14 +402,14 @@ src_prepare() {
20 src_install() {
21 cargo_src_install
22
23 - ${D}/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
24 + "${D}"/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
25 newbashcomp fnm.bash-completion fnm
26
27 - ${D}/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
28 + "${D}"/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
29 insinto /usr/share/zsh/site-functions
30 newins fnm.zsh-completion _fnm
31
32 - ${D}/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
33 + "${D}"/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
34 insinto /usr/share/fish/vendor_completions.d/
35 newins fnm.fish-completion fnm.fish