13 lines
337 B
Bash
13 lines
337 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# ── Standalone Template ──
|
|
# For tasks that don't operate on a file/directory target.
|
|
# All inputs are available as INPUT_<NAME> environment variables.
|
|
#
|
|
# Slot to fill before this template:
|
|
# main() { ... } — the task logic, using $INPUT_* env vars
|
|
|
|
# ── Execution ──
|
|
main
|