mirror of
https://github.com/aaronriedel/hetzner-ddns.git
synced 2025-01-09 03:47:35 +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
|
#!/bin/bash
|
||||||
##########################################################################################
|
##########################################################################################
|
||||||
source .env
|
source $(dirname "$0")/.env
|
||||||
##########################################################################################
|
##########################################################################################
|
||||||
command_exists() {
|
command_exists() {
|
||||||
command -v "$1" >/dev/null 2>&1
|
command -v "$1" >/dev/null 2>&1
|
||||||
|
|
2
ddns6.sh
2
ddns6.sh
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
##########################################################################################
|
##########################################################################################
|
||||||
source .env
|
source $(dirname "$0")/.env
|
||||||
##########################################################################################
|
##########################################################################################
|
||||||
command_exists() {
|
command_exists() {
|
||||||
command -v "$1" >/dev/null 2>&1
|
command -v "$1" >/dev/null 2>&1
|
||||||
|
|
Loading…
Reference in a new issue