commit:     5d8114518bb162b214bc1396025912388754dcf5
Author:     Vincent de Phily <moltonel <AT> gmail <DOT> com>
AuthorDate: Sat Aug 28 13:13:31 2021 +0000
Commit:     Vincent de Phily <moltonel <AT> gmail <DOT> com>
CommitDate: Sat Aug 28 13:13:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5d811451

app-portage/emlop: Fix shell completion on first install

As repored/fixed in https://github.com/vincentdephily/moltonel-ebuilds/issues/2

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Vincent de Phily <moltonel <AT> gmail.com>

 app-portage/emlop/emlop-0.4.1.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-portage/emlop/emlop-0.4.1.ebuild 
b/app-portage/emlop/emlop-0.4.1.ebuild
index c04be2923..68cef1c2d 100644
--- a/app-portage/emlop/emlop-0.4.1.ebuild
+++ b/app-portage/emlop/emlop-0.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2017-2020 Gentoo Authors
+# Copyright 2017-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -90,16 +90,16 @@ src_install() {
        cargo_src_install
        einstalldocs
        if use bash-completion; then
-               emlop complete bash > emlop
+               ./target/release/emlop complete bash > emlop
                dobashcomp emlop
        fi
        if use zsh-completion; then
-               emlop complete zsh > _emlop
+               ./target/release/emlop complete zsh > _emlop
                insinto /usr/share/zsh/site-functions
                doins _emlop
        fi
        if use fish-completion; then
-               emlop complete fish > emlop.fish
+               ./target/release/emlop complete fish > emlop.fish
                insinto /usr/share/fish/vendor_completions.d
                doins emlop.fish
        fi

Reply via email to