diff options
author | Kerin Millar <kfm@plushkava.net> | 2024-08-13 13:57:19 +0100 |
---|---|---|
committer | Kerin Millar <kfm@plushkava.net> | 2024-08-22 20:37:46 +0100 |
commit | d0ac19c92c6dd72a585b8d4bc76b6fde6e74680f (patch) | |
tree | dfc20bcc56ec0b8cf08f31e4d29192b2fa517e44 | |
parent | Put braces around the expansion of the path variable (diff) | |
download | gentoo-functions-d0ac19c92c6dd72a585b8d4bc76b6fde6e74680f.tar.gz gentoo-functions-d0ac19c92c6dd72a585b8d4bc76b6fde6e74680f.tar.bz2 gentoo-functions-d0ac19c92c6dd72a585b8d4bc76b6fde6e74680f.zip |
Disable shellcheck SC2153
SC2153 is informational in nature and triggers only for environment
variables (all uppercase variables) whose names are similar to others
and for which no explicit assignment can be observed. In the case of
gentoo-functions, it was being raised as a result of KSH_VERSION and
YASH_VERSION being expanded. In other words, it is a nuisance.
Signed-off-by: Kerin Millar <kfm@plushkava.net>
-rw-r--r-- | functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.sh b/functions.sh index 871d846..57dfbb6 100644 --- a/functions.sh +++ b/functions.sh @@ -1,6 +1,6 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# shellcheck shell=sh disable=2209,3013,3043 +# shellcheck shell=sh disable=2153,2209,3013,3043 # This file contains a series of function declarations followed by some # initialisation code. Functions intended for internal use shall be prefixed |