From 5483e250f1316dae1bf82a2310ed602b0f80471a Mon Sep 17 00:00:00 2001 From: Nico Sonack Date: Tue, 19 Dec 2023 21:00:12 +0100 Subject: [PATCH] [scripts] install-deps.sh: Fix OS Detection for FreeBSD The script incorrectly detected a running FreeBSD system as unsupported. Fix by correcting case match in script. --- scripts/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh index 444e6051e0..a6727746a8 100755 --- a/scripts/install-deps.sh +++ b/scripts/install-deps.sh @@ -556,7 +556,7 @@ main() Darwin) install_deps_darwin ;; - freebsd) + FreeBSD) install_deps_FreeBSD ;; *)