9 lines
132 B
Bash
9 lines
132 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "[updater] Initial update…"
|
|
python /app/update.py || true
|
|
|
|
echo "[updater] Starting cron…"
|
|
exec cron -f
|