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
|
public function fetchRepo(string $dir, array $options = []): void
|
||||||
{
|
{
|
||||||
Process::fromShellCommandline(
|
Process::fromShellCommandline(
|
||||||
command: 'git --all --tags',
|
command: 'git fetch --all --tags',
|
||||||
cwd: $this->workingDir . DIRECTORY_SEPARATOR . $dir,
|
cwd: $this->workingDir . DIRECTORY_SEPARATOR . $dir,
|
||||||
)->mustRun();
|
)->mustRun();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user