Browse Source

update.php --daemon did not respect --quiet

Andrew Dolgov 11 years ago
parent
commit
0ae9f7460b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      update.php

+ 3 - 1
update.php

@@ -145,7 +145,9 @@
 
 	if (isset($options["daemon"])) {
 		while (true) {
-			passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop");
+			$quiet = (isset($options["quiet"])) ? "--quiet" : "";
+
+			passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet");
 			_debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
 			sleep(DAEMON_SLEEP_INTERVAL);
 		}