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 3D4591382C5 for ; Thu, 13 May 2021 03:19:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0752E088D; Thu, 13 May 2021 03:19:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 77EF2E088D for ; Thu, 13 May 2021 03:19:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DEF3C340C96 for ; Thu, 13 May 2021 03:19:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABC75752 for ; Thu, 13 May 2021 03:19:06 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1620863281.23d5c9acbf66227bfbb40a989b19922ef4f82d41.gyakovlev@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-ppc.conf X-VCS-Directories: tools/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 23d5c9acbf66227bfbb40a989b19922ef4f82d41 X-VCS-Branch: master Date: Thu, 13 May 2021 03:19:06 +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: 73e83019-5492-475a-ad41-0f1b3ec1806d X-Archives-Hash: 28aecdab2ab9c817e7839aed64c8f778 commit: 23d5c9acbf66227bfbb40a989b19922ef4f82d41 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed May 12 23:48:01 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Wed May 12 23:48:01 2021 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=23d5c9ac tools: adjust ppc basedir don't cd into default, prepend default/ to each file. Signed-off-by: Georgy Yakovlev gentoo.org> tools/catalyst-auto-ppc.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index dd9904dd..40ddd149 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -36,17 +36,17 @@ update_symlinks() { post_build() { local set=$1 spec=$2 - pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null + pushd "${BUILD_SRCDIR_BASE}/builds" >/dev/null case ${spec} in ppc32/installcd-stage2-minimal.spec) - upload *${TIMESTAMP}*.iso* + upload default/*${TIMESTAMP}*.iso* ;; ppc32/stage3.spec) - upload stage3-ppc-*${TIMESTAMP}*.xz* + upload default/stage3-ppc-*${TIMESTAMP}*.xz* ;; ppc64/stage3.spec) - upload stage3-ppc64-*${TIMESTAMP}*.xz* + upload default/stage3-ppc64-*${TIMESTAMP}*.xz* ;; *) echo "Finished ${spec}"