.env gets now sorced from the dir of the script

This commit is contained in:
Aaron Riedel 2022-04-25 22:48:12 +02:00
parent 5b1d7aa6da
commit 8fa7974e09
Signed by: aaron
GPG key ID: 643004654D40D577
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
##########################################################################################
source .env
source $(dirname "$0")/.env
##########################################################################################
command_exists() {
command -v "$1" >/dev/null 2>&1

View file

@ -1,6 +1,6 @@
#!/bin/bash
##########################################################################################
source .env
source $(dirname "$0")/.env
##########################################################################################
command_exists() {
command -v "$1" >/dev/null 2>&1