From 2478fb2f94e2ead39b75819de32670921767c343 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Sat, 7 Jun 2025 20:01:00 -0600 Subject: [PATCH] Fix log message to reference 'gitea' instead of '/home/git/git' in SIGHUP handler --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 5653135..dd38065 100644 --- a/main.py +++ b/main.py @@ -838,7 +838,7 @@ def handle_sighup(signum, frame): try: print( - "Received SIGHUP: pulling latest code from /home/git/git (branch master)..." + "Received SIGHUP: pulling latest code from gitea (branch master)..." ) result = subprocess.run(["git", "pull"], capture_output=True, text=True) print(result.stdout)