Fix: Corrected Git fetch command syntax in GitService

This commit is contained in:
2026-03-27 16:08:11 +01:00
parent daaa846902
commit 0091f0fd08

View File

@@ -110,7 +110,7 @@ class GitService
public function fetchRepo(string $dir, array $options = []): void
{
Process::fromShellCommandline(
command: 'git --all --tags',
command: 'git fetch --all --tags',
cwd: $this->workingDir . DIRECTORY_SEPARATOR . $dir,
)->mustRun();
}