From 0c7db76e934df98a000adf1f8fbcfc3bac304d73 Mon Sep 17 00:00:00 2001 From: orbisai-sec Date: Tue, 28 Oct 2025 03:05:33 +0000 Subject: [PATCH] fix: semgrep_bash.lang.security.ifs-tampering.ifs-tampering_common/base.sh_6 --- common/base.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/common/base.sh b/common/base.sh index c04e2b2f..15fe939e 100644 --- a/common/base.sh +++ b/common/base.sh @@ -3,7 +3,6 @@ which() # on some systems 'which' command is considered deprecated and not installed by default # 'command -v' replacement does not work exactly the same way. it outputs shell aliases if present # $1 - executable name - local IFS=: for p in $PATH; do [ -x "$p/$1" ] && { echo "$p/$1"