From 8a7257a8e51ca2f505c80d5b213d25cf2f1a57d0 Mon Sep 17 00:00:00 2001 From: Philipp Schmitt Date: Tue, 18 Feb 2025 17:51:33 +0100 Subject: [PATCH] installer: Set min zsh version to 5.8 (#696) --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 32219ca3..88233c4a 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -58,7 +58,7 @@ echo_error() { } check_dependencies() { - zsh_min_version=5.5 + zsh_min_version=5.8 if ! zsh -sfc \ 'autoload is-at-least; is-at-least $1 $ZSH_VERSION' "$zsh_min_version"; then