mirror of
https://github.com/aaronriedel/hetzner-ddns.git
synced 2025-01-08 03:27:34 +01:00
.env gets now sorced from the dir of the script
This commit is contained in:
parent
5b1d7aa6da
commit
8fa7974e09
2 changed files with 2 additions and 2 deletions
2
ddns4.sh
2
ddns4.sh
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
##########################################################################################
|
||||
source .env
|
||||
source $(dirname "$0")/.env
|
||||
##########################################################################################
|
||||
command_exists() {
|
||||
command -v "$1" >/dev/null 2>&1
|
||||
|
|
2
ddns6.sh
2
ddns6.sh
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
##########################################################################################
|
||||
source .env
|
||||
source $(dirname "$0")/.env
|
||||
##########################################################################################
|
||||
command_exists() {
|
||||
command -v "$1" >/dev/null 2>&1
|
||||
|
|
Loading…
Reference in a new issue