1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-26 07:29:11 +02:00
tmux-fingers/spec/install-tmux-versions.sh
Jorge Morante e5a26b94d9 Revert "legacy tty support WIP"
This reverts commit c977cf72d6.
2021-07-01 08:27:37 +02:00

28 lines
569 B
Bash
Executable File

#!/usr/bin/env bash
if [[ -n "$CI_TMUX_VERSION" ]]; then
VERSIONS=("$CI_TMUX_VERSION")
else
VERSIONS=("2.1" "2.2" "2.3" "2.4" "2.5" "2.6" "2.7" "2.8" "2.9" "2.9a" "3.0" "3.0a")
fi
sudo mkdir -p /opt
sudo chmod a+w /opt
pushd /tmp
for version in "${VERSIONS[@]}";
do
if [[ -d "/opt/tmux-${version}" ]]; then
continue
fi
wget "https://github.com/tmux/tmux/releases/download/${version}/tmux-${version}.tar.gz"
tar pfx "tmux-${version}.tar.gz" -C "/opt/"
pushd "/opt/tmux-${version}"
./configure
make
popd
done
popd