fix importer

fix plugins on docker
This commit is contained in:
Saeed Vaziry
2025-06-19 16:41:46 +02:00
parent 2081bdd46e
commit f97fffe654
6 changed files with 21 additions and 5 deletions

View File

@ -54,7 +54,7 @@ public function install(string $url, ?string $branch = null, ?string $tag = null
$command .= " --tag $tag";
}
$command .= ' --single-branch';
$result = Process::timeout(0)->run($command);
$result = Process::env(['PATH' => dirname(git_path())])->timeout(0)->run($command);
$output = $result->output();
if ($result->failed()) {