mirror of
https://github.com/Quad4-Software/Reticulum-Go
synced 2026-08-29 23:48:44 -04:00
26 lines
736 B
Bash
26 lines
736 B
Bash
#!/bin/sh
|
|
# Install TinyGo .deb from GitHub releases with optional SHA256 pin (TINYGO_DEB_SHA256).
|
|
# Usage: setup-tinygo.sh <version> [arch]
|
|
set -eu
|
|
|
|
. "$(dirname "$0")/priv.sh"
|
|
|
|
VER="${1:?}"
|
|
ARCH="${2:-amd64}"
|
|
DEB="tinygo_${VER}_${ARCH}.deb"
|
|
URL="https://github.com/tinygo-org/tinygo/releases/download/v${VER}/${DEB}"
|
|
|
|
curl -fsSL -o /tmp/tinygo.deb "$URL"
|
|
|
|
if [ -n "${TINYGO_DEB_SHA256:-}" ]; then
|
|
ACTUAL="$(sha256sum /tmp/tinygo.deb | awk '{print $1}')"
|
|
if [ "$ACTUAL" != "$TINYGO_DEB_SHA256" ]; then
|
|
echo "SHA256 mismatch for TinyGo ${DEB}" >&2
|
|
rm -f /tmp/tinygo.deb
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
run_priv dpkg -i /tmp/tinygo.deb 2>/dev/null || run_priv apt-get install -f -y
|
|
rm -f /tmp/tinygo.deb
|
|
tinygo version
|