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 6A29515808B for ; Sat, 19 Mar 2022 20:29:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BFEDE092B; Sat, 19 Mar 2022 20:29:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32547E092B for ; Sat, 19 Mar 2022 20:29:57 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2BB6343619 for ; Sat, 19 Mar 2022 20:29:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78EC9326 for ; Sat, 19 Mar 2022 20:29:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647721782.6713ed040f6b13027371a4bec14b300ae13def28.sam@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: eapi-usage.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6713ed040f6b13027371a4bec14b300ae13def28 X-VCS-Branch: master Date: Sat, 19 Mar 2022 20:29:54 +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: 24e298cc-b036-49eb-8d7d-8ef444a3cc6f X-Archives-Hash: ecf8ce1858f92b38c5129d976846e8ac commit: 6713ed040f6b13027371a4bec14b300ae13def28 Author: Sam James gentoo org> AuthorDate: Sat Mar 19 20:29:42 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 20:29:42 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=6713ed04 eapi-usage.sh: fix clobbering README/STATS Signed-off-by: Sam James gentoo.org> eapi-usage.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eapi-usage.sh b/eapi-usage.sh index 3ec8c8e..81a7f91 100755 --- a/eapi-usage.sh +++ b/eapi-usage.sh @@ -76,9 +76,9 @@ find "${REPO_PATH}"/metadata/md5-cache -type f ! -name '*.gz' \ printf "total: %7d ebuilds\n", NR }' > ${stats} -echo > ${stats} -echo "Date generated: $(date -u '+%Y-%m-%d %H:%M:%S %Z')" > ${stats} -echo "" > ${stats} +echo >> ${stats} +echo "Date generated: $(date -u '+%Y-%m-%d %H:%M:%S %Z')" >> ${stats} +echo "" >> ${stats} echo "
" > ${dir}/README.html
 cat ${stats} >> ${dir}/README.html