From dfde5a76b95e0df4c5d71333d32dade30108c785 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=A9=20Cassiop=C3=A9e=20Gauthier?= Date: Thu, 24 Mar 2022 20:57:09 -0400 Subject: [PATCH] Always install nightly Wezterm --- bootstrap.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 30666f2..e376bd4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -56,9 +56,7 @@ fi ### Wezterm -if ! [ -x "$(command -v wezterm)" ]; then - curl -LO https://github.com/wez/wezterm/releases/download/20220101-133340-7edc5b5a/WezTerm-20220101-133340-7edc5b5a-Ubuntu18.04.AppImage - chmod +x WezTerm-20220101-133340-7edc5b5a-Ubuntu18.04.AppImage - mkdir -p ~/.local/bin - mv WezTerm-20220101-133340-7edc5b5a-Ubuntu18.04.AppImage ~/.local/bin/wezterm -fi +curl -LO https://github.com/wez/wezterm/releases/download/nightly/WezTerm-nightly-Ubuntu18.04.AppImage +chmod +x WezTerm-nightly-Ubuntu18.04.AppImage +mkdir -p ~/.local/bin +mv WezTerm-nightly-Ubuntu18.04.AppImage ~/.local/bin/wezterm