15 lines
478 B
Bash
Executable File
15 lines
478 B
Bash
Executable File
#! /bin/bash --
|
|
|
|
# Questo è un esempio di custom callback. poetry_feat_needed chiama prima poetry_feat_add_django,
|
|
# qui definito, che può effettuare altre operazioni prima e/o dopo il lancio di poetry_feat_add.
|
|
|
|
[ -n "${GREZZO_1577141483-}" ] && return; GREZZO_1577141483=0
|
|
unset CDPATH
|
|
DOVE="$(cd "$(dirname "$(readlink -f -- "${BASH_SOURCE[0]}")")" > /dev/null && pwd -P)"
|
|
|
|
function poetry_feat_add_django() {
|
|
. "$DOVE/../poetry.sh"
|
|
poetry_feat_add "django"
|
|
}
|
|
|
|
unset DOVE |