8 lines
191 B
Bash
8 lines
191 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Run model download with output to stdout/stderr
|
|
/usr/local/bin/ensure_gliner_model.sh 2>&1
|
|
|
|
# Start cron in foreground with logging
|
|
exec cron -f -L 2
|