1
0

Do not push transient steps
All checks were successful
Build and test project / build-and-test (push) Successful in 1m30s

This commit is contained in:
2026-03-19 21:03:20 +01:00
parent cc1ac91253
commit f97e0be4c3
4 changed files with 33 additions and 27 deletions

View File

@@ -4,6 +4,11 @@ set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
KOBOPATCH_DIR="$SCRIPT_DIR/kobopatch-src"
if ! command -v go &>/dev/null; then
echo "Go not found, downloading..."
curl -fsSL https://go.dev/dl/go1.23.12.linux-amd64.tar.gz | tar -xz -C /usr/local
fi
if [ -d "$KOBOPATCH_DIR" ]; then
echo "Updating kobopatch source..."
cd "$KOBOPATCH_DIR"