From 432c6837e7e7a2f2c89f79645ac3813ece106d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sat, 19 Apr 2025 19:59:29 +0200 Subject: [PATCH] seelf: Add missing gpg dependency (#3953) --- install/seelf-install.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/install/seelf-install.sh b/install/seelf-install.sh index e4cb6e19f..f38c5d930 100644 --- a/install/seelf-install.sh +++ b/install/seelf-install.sh @@ -16,7 +16,8 @@ update_os msg_info "Installing Dependencies" $STD apt-get install -y \ make \ - gcc + gcc \ + gpg msg_ok "Installed Dependencies" msg_info "Installing Golang" @@ -43,8 +44,8 @@ msg_ok "Installed Node.js" msg_info "Setting up seelf. Patience" RELEASE=$(curl -fsSL https://api.github.com/repos/YuukanOO/seelf/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') curl -fsSL "https://github.com/YuukanOO/seelf/archive/refs/tags/v${RELEASE}.tar.gz" -o $(basename "https://github.com/YuukanOO/seelf/archive/refs/tags/v${RELEASE}.tar.gz") -tar -xzf v${RELEASE}.tar.gz -mv seelf-${RELEASE}/ /opt/seelf +tar -xzf v"${RELEASE}".tar.gz +mv seelf-"${RELEASE}"/ /opt/seelf cd /opt/seelf $STD make build PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13) @@ -84,11 +85,11 @@ customize # Cleanup msg_info "Cleaning up" -rm -f ~/v${RELEASE}.tar.gz -rm -f $temp_file +rm -f ~/v"${RELEASE}".tar.gz +rm -f "$temp_file" $STD apt-get -y autoremove $STD apt-get -y autoclean msg_ok "Cleaned" motd_ssh -customize \ No newline at end of file +customize