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
This commit is contained in:
vladislav doster 2024-09-02 13:05:35 -05:00 committed by GitHub
parent c3d4e576c9
commit 8febfdbe27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,8 @@ for v in $(grep "^[^#]" ZSH_VERSIONS); do
cd zsh-$v cd zsh-$v
curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1 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 ./Util/preconfig
./configure --enable-pcre \ ./configure --enable-pcre \