From b0d117c3b873fb3ee278db990448b4b0ee09a2fb Mon Sep 17 00:00:00 2001 From: Ingo Ratsdorf Date: Wed, 10 Sep 2025 08:49:48 +1200 Subject: [PATCH] Update install/ubuntu/install.ubuntu.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- install/ubuntu/install.ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/ubuntu/install.ubuntu.sh b/install/ubuntu/install.ubuntu.sh index 5d1ecb2b..efd14ee1 100644 --- a/install/ubuntu/install.ubuntu.sh +++ b/install/ubuntu/install.ubuntu.sh @@ -61,7 +61,7 @@ if [ -d "$INSTALL_DIR" ]; then elif [ "$confirmation" == "update" ]; then echo "Updating the existing installation..." service nginx stop 2>/dev/null - pkill -f "python /app/server" 2>/dev/null + pkill -f "python ${INSTALL_DIR}/server" 2>/dev/null cd "$INSTALL_DIR" || { echo "Failed to change directory to $INSTALL_DIR"; exit 1; } git pull elif [ "$confirmation" == "start" ]; then