Files
eveAI/scripts/git/gitflow
2025-12-11 09:27:21 +01:00

11 lines
315 B
Bash
Executable File

#!/usr/bin/env bash
# Kleine wrapper zodat je gewoon `scripts/git/gitflow ...` kunt aanroepen
# zonder expliciet `python` te typen.
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
cd "${PROJECT_ROOT}" || exit 1
exec python -m scripts.git.gitflow "$@"