Fix: Corrected Git fetch command syntax in GitService
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user