From 8e7be078a062923240e60a37f64788a3c3070ec3 Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Tue, 3 Feb 2026 10:39:13 +0100 Subject: [PATCH] Fix changing directory. --- pull-and-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pull-and-update.sh b/pull-and-update.sh index 7052113..2b329b6 100755 --- a/pull-and-update.sh +++ b/pull-and-update.sh @@ -2,7 +2,7 @@ set -e # https://stackoverflow.com/a/1482133/270712 -MYDIR=dirname -- "$( readlink -f -- "$0"; )"; +MYDIR=`dirname -- "$( readlink -f -- "$0"; )";` pushd "$MYDIR" git pull docker compose up build