7 lines
155 B
Bash
7 lines
155 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
"$SCRIPT_DIR/detmir-support-run.sh" --scope weekly "$@"
|