From 4f60ee90d652d2bfcb2c1227fed29a3c668bc4bd Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 25 Feb 2016 10:05:34 +0100 Subject: [PATCH] Don't show PCNTL warning if --no-warnings is passed * fixes owncloud/updater#252 --- console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.php b/console.php index eb6c84c3cf8..3c25be34fe4 100644 --- a/console.php +++ b/console.php @@ -77,7 +77,7 @@ try { exit(1); } - if (!function_exists('pcntl_signal')) { + if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) { echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL; }