From be3bbcc509398ef8dcf2437e02d00cecc6241a95 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 11 Sep 2022 20:52:26 -0400 Subject: [PATCH] Update trilium-install.sh --- setup/trilium-install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/setup/trilium-install.sh b/setup/trilium-install.sh index 00a32428..36524370 100644 --- a/setup/trilium-install.sh +++ b/setup/trilium-install.sh @@ -72,9 +72,13 @@ apt-get install -y curl &>/dev/null apt-get install -y sudo &>/dev/null msg_ok "Installed Dependencies" +RELEASE=$(curl -s https://api.github.com/repos/zadam/trilium/releases/latest \ +| grep "tag_name" \ +| awk '{print substr($2, 3, length($2)-4) }') + msg_info "Installing Trilium" -wget -q https://github.com/zadam/trilium/releases/download/v0.54.3/trilium-linux-x64-server-0.54.3.tar.xz -tar -xvf trilium-linux-x64-server-0.54.3.tar.xz &>/dev/null +wget -q https://github.com/zadam/trilium/releases/download/v$RELEASE/trilium-linux-x64-server-$RELEASE.tar.xz +tar -xvf trilium-linux-x64-server-$RELEASE.tar.xz &>/dev/null mv trilium-linux-x64-server /opt/trilium msg_ok "Installed Trilium" @@ -118,5 +122,5 @@ msg_ok "Customized Container" msg_info "Cleaning up" apt-get autoremove >/dev/null apt-get autoclean >/dev/null -rm -rf /var/{cache,log}/* /var/lib/apt/lists/* /root/trilium-linux-x64-server-0.54.3.tar.xz +rm -rf /var/{cache,log}/* /var/lib/apt/lists/* /root/trilium-linux-x64-server-$RELEASE.tar.xz msg_ok "Cleaned"