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 0CB0D138AE9 for ; Fri, 29 Dec 2017 00:35:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23013E0E59; Fri, 29 Dec 2017 00:35:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 F2D90E0E59 for ; Fri, 29 Dec 2017 00:35:24 +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 C384B341640 for ; Fri, 29 Dec 2017 00:35:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 143E0AFBF for ; Fri, 29 Dec 2017 00:35:22 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1514507671.2f9c42444f3207054c3a3abfd3f9e0f368d3ffae.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: / X-VCS-Repository: proj/catalyst X-VCS-Files: testpath X-VCS-Directories: / X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 2f9c42444f3207054c3a3abfd3f9e0f368d3ffae X-VCS-Branch: master Date: Fri, 29 Dec 2017 00:35:22 +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-Archives-Salt: b0fd4c99-991b-4bf5-805e-554779d93d13 X-Archives-Hash: 026008a8a18d485783a29523830d4a33 commit: 2f9c42444f3207054c3a3abfd3f9e0f368d3ffae Author: Brian Dolbec gentoo org> AuthorDate: Fri Dec 29 00:30:43 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Dec 29 00:34:31 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=2f9c4244 testpath: Change to PWD instead of BASH_SOURCE BASHSOURCE is no longer working... testpath | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testpath b/testpath index f4721a4b..4c18df10 100644 --- a/testpath +++ b/testpath @@ -14,5 +14,5 @@ # # catalyst -c catalyst.conf -p -f stage1.spec -export PATH="$(dirname ${BASH_SOURCE[0]})/bin:${PATH}" -export PYTHONPATH="$(dirname $0)/../pyDeComp/:$(dirname ${BASH_SOURCE[0]})${PYTHONPATH:+:}${PYTHONPATH}" +export PATH="$(dirname ${PWD})/bin:${PATH}" +export PYTHONPATH="$(dirname ${PWD})/../pyDeComp/:$(dirname ${PWD})${PYTHONPATH:+:}${PYTHONPATH}"