From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E40DA138A1A for ; Wed, 18 Feb 2015 09:28:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9314DE0951; Wed, 18 Feb 2015 09:28:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47264E0951 for ; Wed, 18 Feb 2015 09:28:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D8DA3408C1 for ; Wed, 18 Feb 2015 09:28:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD9E11203B for ; Wed, 18 Feb 2015 09:28:53 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1424251710.737d5fd29d780cb48a479e5beedfa49f21216dab.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: / X-VCS-Repository: proj/sci X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 737d5fd29d780cb48a479e5beedfa49f21216dab X-VCS-Branch: master Date: Wed, 18 Feb 2015 09:28:53 +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: 7dcb8888-124b-441d-abf2-dcc919a4102e X-Archives-Hash: be449a7fb7ab751b2f02607f488abd72 commit: 737d5fd29d780cb48a479e5beedfa49f21216dab Author: Justin Lecher gentoo org> AuthorDate: Wed Feb 18 09:28:30 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Feb 18 09:28:30 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=737d5fd2 Fix path to repoman Signed-off-by: Justin Lecher gentoo.org> --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bec04af..1f584b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ script: for x in $(cat profiles/categories); do if test $(( cx++ % 16 )) -eq ${JOB}; then cd ${x} && { - python ../portage-*/bin/repoman full -vdx || ret=1; + python ../../portage-master/bin/repoman full -vdx || ret=1; } && cd -; fi; done;