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 A5444138334 for ; Mon, 12 Nov 2018 22:15:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CF7BE0A4F; Mon, 12 Nov 2018 22:15:23 +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 74CECE0A4F for ; Mon, 12 Nov 2018 22:15:23 +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 4172B335C6F for ; Mon, 12 Nov 2018 22:15:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71BC1462 for ; Mon, 12 Nov 2018 22:15:19 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1542060915.2d8dcda77b43ac8c2fda3086b411ce7b25a57330.robbat2@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: create-dev-keyrings.bash X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 2d8dcda77b43ac8c2fda3086b411ce7b25a57330 X-VCS-Branch: master Date: Mon, 12 Nov 2018 22:15:19 +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: 5ba364df-cf8d-4fa9-b645-7fa93f1ded38 X-Archives-Hash: 5bfa6c634b3e34e2c1f89312c8d16b59 commit: 2d8dcda77b43ac8c2fda3086b411ce7b25a57330 Author: Robin H. Johnson gentoo org> AuthorDate: Mon Nov 12 22:15:15 2018 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Mon Nov 12 22:15:15 2018 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=2d8dcda7 create-dev-keyrings: fix thinko in chmod target Signed-off-by: Robin H. Johnson gentoo.org> create-dev-keyrings.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-dev-keyrings.bash b/create-dev-keyrings.bash index 01f15b2..2549817 100755 --- a/create-dev-keyrings.bash +++ b/create-dev-keyrings.bash @@ -60,7 +60,7 @@ export_keys() { # If there are no keys in the export set, then it ALSO does not write the destination file # and prints 'gpg: WARNING: nothing exported' to stderr if gpg --output "$TMP" --export "${@}" && test -s "${TMP}"; then - chmod a+r "${DST}" + chmod a+r "${TMP}" mv "${TMP}" "${DST}" else echo "Unable to export keys to $DST"