🐛 fix missing tmux dependency

This commit is contained in:
dth@taiga.ai 2023-06-11 20:30:41 +02:00
parent 24f41efc99
commit 5f34b38f9d

View file

@ -3,6 +3,8 @@
echo >&2 "=====================================================================" echo >&2 "====================================================================="
echo >&2 " >> installing tmux" echo >&2 " >> installing tmux"
TMUX_VERSION=3.3a TMUX_VERSION=3.3a
echo >&2 " >>> install tmux dependencies"
sudo apt install -y libevent-dev
echo >&2 " >>> downloading file" echo >&2 " >>> downloading file"
curl -LO https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz curl -LO https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz
echo >&2 " >>> decompressing" echo >&2 " >>> decompressing"