diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 15:59:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 15:59:29 -0300 |
commit | ee44ef924874db42bd5d10b08d3b8f1f9f9de200 (patch) | |
tree | f11ad940aff2fae629f6338502871e47aeee5baa /bin | |
parent | 49460352dbc380d3170aa6c9a9e9008a3e2a9706 (diff) | |
download | bookup-ee44ef924874db42bd5d10b08d3b8f1f9f9de200.tar.gz bookup-ee44ef924874db42bd5d10b08d3b8f1f9f9de200.tar.bz2 |
Feat: support for an .env file (4)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/provision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/provision b/bin/provision index 91608ec..21ca98e 100755 --- a/bin/provision +++ b/bin/provision @@ -9,7 +9,7 @@ BASEDIR="$DIRNAME/.." # Load optional customizations # -# Search in multiple levels to account for the case this repository is vendorized. +# Search in multiple levels to account when this repository is vendorized. [ -f "$BASEDIR/.env" ] && source $BASEDIR/.env [ -f "$BASEDIR/../.env" ] && source $BASEDIR/../.env [ -f "$BASEDIR/../../.env" ] && source $BASEDIR/../../.env |