queit -> quiet (#14163)

This commit is contained in:
TheMysteriousX
2022-07-31 15:05:37 +01:00
committed by GitHub
parent 3309750f35
commit a2c705bd87

View File

@@ -66,7 +66,7 @@ class Updates extends BaseValidation
$remote_ver = Version::get()->remoteCommit();
if ($local_ver['sha'] != ($remote_ver['sha'] ?? null)) {
if (empty($local_ver['date'])) {
$process = new Process(['git', 'show', '--queit', '--pretty=%H|%ct'], base_path());
$process = new Process(['git', 'show', '--quiet', '--pretty=%H|%ct'], base_path());
$process->run();
$error = rtrim($process->getErrorOutput());