Primo abbozzo. Ancora molta strada da fare

This commit is contained in:
Guido Longoni
2019-12-27 03:20:51 +01:00
parent ae707ad8c1
commit 7c20823522
10 changed files with 649 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#! /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.
[ ! -z "${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