commit: 7e82a40f39b75efa66ccbd73580d4c3a051b155e
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Sat Aug 3 04:19:23 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <kfm <AT> 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"