This commit is contained in:
a1346054 2023-09-11 11:38:58 -07:00 committed by GitHub
commit bf0b6aec44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View File

@ -3,10 +3,10 @@
set -ex set -ex
for v in $(grep "^[^#]" ZSH_VERSIONS); do for v in $(grep "^[^#]" ZSH_VERSIONS); do
mkdir zsh-$v mkdir "zsh-$v"
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
./Util/preconfig ./Util/preconfig
./configure --enable-pcre \ ./configure --enable-pcre \
@ -22,5 +22,5 @@ for v in $(grep "^[^#]" ZSH_VERSIONS); do
cd .. cd ..
rm -rf zsh-$v rm -rf "zsh-$v"
done done