mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
69d7fa14d3
Published at `ericfreese/zsh-autosuggestions-test`. Contains: - Ruby 2.5.3 - Supported zsh versions 4.3.11 through 5.6.2 - Test ruby dependencies Also updates Circle CI config to use built docker image.
26 lines
506 B
Bash
Executable file
26 lines
506 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
for v in $(grep "^[^#]" ZSH_VERSIONS); do
|
|
mkdir zsh-$v
|
|
cd zsh-$v
|
|
|
|
curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1
|
|
|
|
./Util/preconfig
|
|
./configure --enable-pcre \
|
|
--enable-cap \
|
|
--enable-multibyte \
|
|
--with-term-lib='ncursesw tinfo' \
|
|
--without-tcsetpgrp \
|
|
--program-suffix="-$v"
|
|
|
|
make install.bin
|
|
make install.modules
|
|
make install.fns
|
|
|
|
cd ..
|
|
|
|
rm -rf zsh-$v
|
|
done
|