Updated installation message

This commit is contained in:
markseu 2024-04-11 11:44:48 +02:00
parent c4bde2a692
commit ab2b5974e3
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ class YellowCore {
public function command($line = "") {
$statusCode = $this->processCoreUpdate();
if ($statusCode==303) {
echo "Flux capacitor has reached 1.21 gigawatts. Please run command again.\n";
echo "Yellow flux capacitor has reached 1.21 gigawatts. Please run command again.\n";
}
return $statusCode<400 ? 0 : 1;
}

View file

@ -204,7 +204,7 @@ class YellowUpdate {
$this->updateEventPending();
$statusCode = $this->updateExtensionPending();
if ($statusCode==303) {
echo "Detected ZIP file".($this->extensions!=1 ? "s" : "");
echo "Yellow detected ZIP file".($this->extensions!=1 ? "s" : "");
echo ", $this->extensions extension".($this->extensions!=1 ? "s" : "")." installed. Please run command again.\n";
}
return $statusCode;