From bfd386a6aea130282a49cfd8363815b190105d53 Mon Sep 17 00:00:00 2001 From: juliangiebel Date: Mon, 5 Feb 2024 15:33:38 +0100 Subject: [PATCH] Blub --- SS14.MapServer/Services/GitService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SS14.MapServer/Services/GitService.cs b/SS14.MapServer/Services/GitService.cs index b893acb..89518db 100644 --- a/SS14.MapServer/Services/GitService.cs +++ b/SS14.MapServer/Services/GitService.cs @@ -120,7 +120,7 @@ private void Pull(string repoDirectory, string gitRef) RunCommand(repoDirectory, "checkout --force", StripRef(gitRef)); _log.Debug("Pulling latest changes"); - RunCommand(repoDirectory, "pull origin HEAD --ff-only --force"); + RunCommand(repoDirectory, "pull origin --ff-only --force", StripRef(gitRef)); _log.Debug("Updating submodules"); RunCommand(repoDirectory, "submodule update --init --recursive");