From 69149d5b4ebab13b7cbfef3dd006eeb2991a988f Mon Sep 17 00:00:00 2001 From: MozirDmitriy Date: Thu, 18 Sep 2025 14:25:13 +0300 Subject: [PATCH] fix(fuzz): validate --fuzzcache-path against fuzzcachepath, not binpath --- scripts/fuzz.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fuzz.bash b/scripts/fuzz.bash index a73c208e88..cfa0a50342 100755 --- a/scripts/fuzz.bash +++ b/scripts/fuzz.bash @@ -50,7 +50,7 @@ while [[ $# -gt 0 ]]; do ;; --fuzzcache-path) fuzzcachepath="$2" - if [[ ! -d "$binpath" ]]; then + if [[ ! -d "$fuzzcachepath" ]]; then echo must supply valid path for fuzzcache-path exit 1 fi