source with source not dot

Signed-off-by: Michael Woolweaver <michael@woolweaver.bid>
This commit is contained in:
Michael Woolweaver
2025-04-02 14:21:45 -05:00
parent 557bc6f179
commit 4efe4dfd4b
8 changed files with 12 additions and 12 deletions

View File

@@ -17,12 +17,12 @@ cachedVersions="/etc/pihole/versions"
if [ -f ${cachedVersions} ]; then
# shellcheck disable=SC1090
. "$cachedVersions"
source "$cachedVersions"
else
echo "Could not find /etc/pihole/versions. Running update now."
pihole updatechecker
# shellcheck disable=SC1090
. "$cachedVersions"
source "$cachedVersions"
fi
main() {