From 9eff70b780c4a1b6f6b3834f7806cd31427c7141 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 24 May 2023 16:46:52 +0200 Subject: [PATCH] fixed typo --- git_helpers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_helpers b/git_helpers index 0ec5687..d774652 100755 --- a/git_helpers +++ b/git_helpers @@ -188,7 +188,7 @@ pull_customer_repository () { # If 'git pull' has fetched new data, then there are lines starting with # DOWNLOAD or EXECUTE. grep -E -q "^[[:space:]]*(DOWNLOAD|EXECUTE)" "$GIT_UPDATE_LOG" - if [ $? -eq 0]; then + if [ $? -eq 0 ]; then log_info "$func:${LINENO}: new data fetched from repository" cd_home; return 0 fi