- Writing custom git flow scripts - a start
This commit is contained in:
10
scripts/git/gitflow
Executable file
10
scripts/git/gitflow
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/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 "$@"
|
||||
Reference in New Issue
Block a user