From f61da8e09a0338766809a4e532dd43e985b51be5 Mon Sep 17 00:00:00 2001 From: Bishoy Ehab Date: Fri, 30 May 2025 17:45:57 +0300 Subject: [PATCH] change to pull no matter any branch --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index be6d638d..b7198451 100755 --- a/update.sh +++ b/update.sh @@ -580,7 +580,7 @@ fi if git remote get-url origin &>/dev/null; then # Pull changes log_info "Pulling changes from origin/$current_branch..." - if git pull origin "$current_branch"; then + if git pull; then log_success "Successfully pulled latest changes" else log_warning "Failed to pull changes from remote. Continuing with local repository..."