From 8fa7974e09ff6d744a8ffe95dc14d898660b18d2 Mon Sep 17 00:00:00 2001 From: aaron Date: Mon, 25 Apr 2022 22:48:12 +0200 Subject: [PATCH] .env gets now sorced from the dir of the script --- ddns4.sh | 2 +- ddns6.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ddns4.sh b/ddns4.sh index 502136a..9130dc1 100755 --- a/ddns4.sh +++ b/ddns4.sh @@ -1,6 +1,6 @@ #!/bin/bash ########################################################################################## -source .env +source $(dirname "$0")/.env ########################################################################################## command_exists() { command -v "$1" >/dev/null 2>&1 diff --git a/ddns6.sh b/ddns6.sh index 9dacb40..0e6302b 100755 --- a/ddns6.sh +++ b/ddns6.sh @@ -1,6 +1,6 @@ #!/bin/bash ########################################################################################## -source .env +source $(dirname "$0")/.env ########################################################################################## command_exists() { command -v "$1" >/dev/null 2>&1