stackage/automated/run-nightly.sh
Jens Petersen 64e8d451b0 run-nightly.sh: do a git pull first
This ensures we have the latest repo files locally before starting
2022-10-25 19:11:49 +08:00

13 lines
162 B
Bash
Executable File

#!/usr/bin/env bash
cd "$(dirname "${BASH_SOURCE[0]}")"
while true; do
git pull
./build.sh nightly-$(date -u +%F)
date
sleep 30m
echo
done