1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-04-26 00:58:06 +00:00

Build binary ourselves (#3303)

This commit is contained in:
Slaviša Arežina 2025-03-21 15:54:09 +01:00 committed by GitHub
parent 67bb2b7c89
commit f7762da69c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 8 deletions

View File

@ -40,8 +40,10 @@ function update_script() {
wget -q "https://github.com/StarFleetCPTN/GoMFT/archive/refs/tags/v${RELEASE}.tar.gz" -O $temp_file
tar -xzf $temp_file
cp -rf GoMFT-${RELEASE}/* /opt/gomft
cd /opt/gomft
$STD go mod download
$STD go build -o gomft
$STD $HOME/go/bin/templ generate
wget -q "https://github.com/StarFleetCPTN/GoMFT/releases/download/v${RELEASE}/gomft-v${RELEASE}-linux-amd64" -O /opt/gomft/gomft
chmod +x /opt/gomft/gomft
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated $APP to ${RELEASE}"

View File

@ -35,16 +35,17 @@ set -o pipefail
msg_ok "Setup Golang"
msg_info "Setup ${APPLICATION}"
temp_file2=$(mktemp)
temp_file=$(mktemp)
RELEASE=$(curl -s https://api.github.com/repos/StarFleetCPTN/GoMFT/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
wget -q "https://github.com/StarFleetCPTN/GoMFT/archive/refs/tags/v${RELEASE}.tar.gz" -O $temp_file2
tar -xzf $temp_file2
wget -q "https://github.com/StarFleetCPTN/GoMFT/archive/refs/tags/v${RELEASE}.tar.gz" -O $temp_file
tar -xzf $temp_file
mv GoMFT-${RELEASE}/ /opt/gomft
cd /opt/gomft
$STD go install github.com/a-h/templ/cmd/templ@latest
wget -q "https://github.com/StarFleetCPTN/GoMFT/releases/download/v${RELEASE}/gomft-v${RELEASE}-linux-amd64" -O gomft
$STD $HOME/go/bin/templ generate
$STD go mod download
$STD go build -o gomft
chmod +x gomft
$STD go install github.com/a-h/templ/cmd/templ@latest
$STD $HOME/go/bin/templ generate
JWT_SECRET_KEY=$(openssl rand -base64 24 | tr -d '/+=')
cat <<EOF >/opt/gomft/.env
@ -93,7 +94,7 @@ motd_ssh
customize
msg_info "Cleaning up"
rm -f $temp_file $temp_file2
rm -f $temp_file
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"