diff --git a/LibreNMS/Validations/Updates.php b/LibreNMS/Validations/Updates.php index fefcc46fd1..5888c379f0 100644 --- a/LibreNMS/Validations/Updates.php +++ b/LibreNMS/Validations/Updates.php @@ -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());