mirror of
https://github.com/lupyuen/nuttx-forgejo.git
synced 2025-01-12 22:58:28 +08:00
9 lines
161 B
Bash
Executable file
9 lines
161 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set +e ## Ignore errors
|
|
set -x ## Echo commands
|
|
|
|
for (( ; ; )); do
|
|
$HOME/nuttx-forgejo/sync-mirror-to-update.sh
|
|
date ; sleep 600
|
|
done
|