diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-06-03 23:31:24 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-06-03 23:33:18 -0700 |
commit | bb5e17c89de66a17f1ae5b18e971ff13c86195e2 (patch) | |
tree | 949f536b486fd773608103ec1d2b63715e044d83 /app-text/jo | |
parent | dev-util/webhook: His name... is Robin Johnson (diff) | |
download | gentoo-bb5e17c89de66a17f1ae5b18e971ff13c86195e2.tar.gz gentoo-bb5e17c89de66a17f1ae5b18e971ff13c86195e2.tar.bz2 gentoo-bb5e17c89de66a17f1ae5b18e971ff13c86195e2.zip |
app-text/jo: Fix DoublePrefixInPath warning
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-text/jo')
-rw-r--r-- | app-text/jo/jo-1.3.ebuild | 2 | ||||
-rw-r--r-- | app-text/jo/jo-99999.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app-text/jo/jo-1.3.ebuild b/app-text/jo/jo-1.3.ebuild index 432c8d4358b4..d2d6974384b1 100644 --- a/app-text/jo/jo-1.3.ebuild +++ b/app-text/jo/jo-1.3.ebuild @@ -19,5 +19,5 @@ src_configure() { src_install() { default - mv "${ED}/$(get_bashcompdir)"/jo{.bash,} || die + mv $(get_bashcompdir)/jo{.bash,} || die } diff --git a/app-text/jo/jo-99999.ebuild b/app-text/jo/jo-99999.ebuild index 430a4993680b..06279f5b7cd7 100644 --- a/app-text/jo/jo-99999.ebuild +++ b/app-text/jo/jo-99999.ebuild @@ -24,5 +24,5 @@ src_configure() { src_install() { default - mv "${ED}/$(get_bashcompdir)"/jo{.bash,} || die + mv $(get_bashcompdir)/jo{.bash,} || die } |