From b1e843eace70a73466f5b8163b664b29f1956e7b Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Wed, 4 Dec 2024 19:33:07 +0300 Subject: [PATCH] Fix Incorrect Link to Slither Installation Guide --- scripts/check-slither.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-slither.sh b/scripts/check-slither.sh index ca2b2f6..4a2107a 100755 --- a/scripts/check-slither.sh +++ b/scripts/check-slither.sh @@ -11,7 +11,7 @@ log() { main() { if ! command -v slither >/dev/null; then - log "${RED}error: slither is required but is not installed${RESET}.\nFollow instructions at ${CYAN}https://github.com/crytic/slither?tab=readme-ov-file#how-to-install${RESET} and try again." + log "${RED}error: slither is required but is not installed${RESET}.\nFollow instructions at ${CYAN}https://github.com/crytic/slither#how-to-install${RESET} and try again." exit 1 fi }