From 8febfdbe27fd7e1aee27d4af946b3f3c44d5c88c Mon Sep 17 00:00:00 2001 From: vladislav doster <10052309+vladdoster@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:05:35 -0500 Subject: [PATCH] fix(install_test_zsh.sh): fetch latest config.{guess,sub} files This script, last modified 2009-11-20, has failed to recognize the operating system you are using. It is advised that you download the most up to date version of the config scripts from http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD --- install_test_zsh.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install_test_zsh.sh b/install_test_zsh.sh index 40dc4c5..152c634 100755 --- a/install_test_zsh.sh +++ b/install_test_zsh.sh @@ -7,6 +7,8 @@ for v in $(grep "^[^#]" ZSH_VERSIONS); do cd zsh-$v curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1 + curl -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=refs/heads/master' + curl -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' ./Util/preconfig ./configure --enable-pcre \