summaryrefslogtreecommitdiff
path: root/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh
diff options
context:
space:
mode:
Diffstat (limited to 'home-config/zsh/zsh-autosuggestions/install_test_zsh.sh')
-rwxr-xr-xhome-config/zsh/zsh-autosuggestions/install_test_zsh.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh b/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh
deleted file mode 100755
index 40dc4c5..0000000
--- a/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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' \
- --with-tcsetpgrp \
- --program-suffix="-$v"
-
- make install.bin
- make install.modules
- make install.fns
-
- cd ..
-
- rm -rf zsh-$v
-done