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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DAE8C158041 for ; Tue, 2 Apr 2024 17:31:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09070E29F4; Tue, 2 Apr 2024 17:31:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE732E29F4 for ; Tue, 2 Apr 2024 17:31:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18CDF3431C3 for ; Tue, 2 Apr 2024 17:31:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D0A1B2A for ; Tue, 2 Apr 2024 17:31:20 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1712079076.643ab6c4370c2d3f79a4828b45ad7bb68c8fce01.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/auto-bootstraps/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/auto-bootstraps/process_uploads.sh X-VCS-Directories: scripts/auto-bootstraps/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 643ab6c4370c2d3f79a4828b45ad7bb68c8fce01 X-VCS-Branch: master Date: Tue, 2 Apr 2024 17:31:20 +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: 731d7a63-62a3-482d-9575-de3bc8eb6730 X-Archives-Hash: 4d4a8b0ab1349175ebd2cba5703a6494 commit: 643ab6c4370c2d3f79a4828b45ad7bb68c8fce01 Author: Fabian Groffen gentoo org> AuthorDate: Tue Apr 2 17:30:53 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Apr 2 17:31:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=643ab6c4 scripts/auto-bootstraps/process_uploads: allow processing of temp files too Signed-off-by: Fabian Groffen gentoo.org> scripts/auto-bootstraps/process_uploads.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/auto-bootstraps/process_uploads.sh b/scripts/auto-bootstraps/process_uploads.sh index 8a71d296a4..8e51f7c992 100755 --- a/scripts/auto-bootstraps/process_uploads.sh +++ b/scripts/auto-bootstraps/process_uploads.sh @@ -62,8 +62,10 @@ for d in "${UPLOADDIR}"/* ; do mkdir -p "${RESULTSDIR}/${w}" [[ -e "${pkg}"/build-info ]] && \ mv "${pkg}"/build-info "${RESULTSDIR}/${w}"/ - [[ -e "${pkg}"/temp ]] && \ + if [[ -e "${pkg}"/temp ]] ; then mv "${pkg}"/temp "${RESULTSDIR}/${w}"/ + process_file "${RESULTSDIR}/${w}"/temp + fi done fi chmod -R o+rX,go-w "${RESULTSDIR}/${dir}"