From c9a4e52623fe5826f9cf6fb65f0f3b40d50b033e Mon Sep 17 00:00:00 2001 From: aarondill Date: Wed, 5 Jul 2023 13:05:35 -0500 Subject: [PATCH] add explaination for shellcheck disable SC3043 is the warning about lack of `local` definition in POSIX. This is a Dev Exp improvement, as it removes unneeded and unwanted warnings. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e1373ef..fa02d61 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/sh # shellcheck shell=dash -# shellcheck disable=SC3043 +# shellcheck disable=SC3043 # Disable warning about 'local'. see note below. # The official zoxide installer. #