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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 89E421382C5 for ; Thu, 4 Jun 2020 06:33:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A402FE09C7; Thu, 4 Jun 2020 06:33:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8E539E09C7 for ; Thu, 4 Jun 2020 06:33:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 969AF34F162 for ; Thu, 4 Jun 2020 06:33:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6F08286 for ; Thu, 4 Jun 2020 06:33:32 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1591252398.bb5e17c89de66a17f1ae5b18e971ff13c86195e2.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/jo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/jo/jo-1.3.ebuild app-text/jo/jo-99999.ebuild X-VCS-Directories: app-text/jo/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bb5e17c89de66a17f1ae5b18e971ff13c86195e2 X-VCS-Branch: master Date: Thu, 4 Jun 2020 06:33:32 +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: 8a504634-8f74-4873-8552-fa61d0a52f74 X-Archives-Hash: b3194dde6d41d459c7e67155b5dbf595 commit: bb5e17c89de66a17f1ae5b18e971ff13c86195e2 Author: Matt Turner gentoo org> AuthorDate: Thu Jun 4 06:31:24 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Jun 4 06:33:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5e17c8 app-text/jo: Fix DoublePrefixInPath warning Signed-off-by: Matt Turner gentoo.org> app-text/jo/jo-1.3.ebuild | 2 +- 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 432c8d4358b..d2d6974384b 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 430a4993680..06279f5b7cd 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 }