10 lines
258 B
Bash
Executable File
10 lines
258 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
"${SCRIPT_DIR}/jira_analyze.py" \
|
|
--html-sprint-quarter-out "${SCRIPT_DIR}/vdev-sprints-2026.html" \
|
|
--sprints-from 2026-01-01 \
|
|
--sprints-to 2026-06-15
|