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 2BACB159C9B for ; Mon, 5 Aug 2024 02:02:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFF4EE2AE4; Mon, 5 Aug 2024 02:02:17 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3EDBE2AE0 for ; Mon, 5 Aug 2024 02:02:17 +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 B1C5F340C9C for ; Mon, 5 Aug 2024 02:02:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 196EE1E80 for ; Mon, 5 Aug 2024 02:02:15 +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: <1722658959.7e82a40f39b75efa66ccbd73580d4c3a051b155e.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: test-functions X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7e82a40f39b75efa66ccbd73580d4c3a051b155e X-VCS-Branch: master Date: Mon, 5 Aug 2024 02:02:15 +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: 0613d3c9-4e7a-4e65-b929-5918e1b79174 X-Archives-Hash: 2ce91e8b34c1f7432859511976e86d2c commit: 7e82a40f39b75efa66ccbd73580d4c3a051b155e Author: Kerin Millar plushkava net> AuthorDate: Sat Aug 3 04:19:23 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Aug 3 04:22:39 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=7e82a40f test-functions: jettison a few shellcheck exemptions They are no longer applicable. Signed-off-by: Kerin Millar plushkava.net> test-functions | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-functions b/test-functions index db89e73..7d75eda 100755 --- a/test-functions +++ b/test-functions @@ -1,5 +1,5 @@ #!/bin/sh -# shellcheck disable=2015,2154,2164,2181,2317 +# shellcheck disable=2015,2164,2317 # Requires mktemp(1), which is not a standard utility, but is commonly # available. The implementations provided by GNU coreutils, busybox and toybox @@ -12,7 +12,6 @@ bailout() { } assign_tmpdir() { - # shellcheck disable=1007 dir=$(mktemp -d) \ && chdir "${dir}" \ || bailout "Couldn't create or change to the temp dir"