From d91bc28aec5d9a0f5ce66b08a1e972a2556a4164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 18 May 2021 14:12:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- System/Process/ServerInotify.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/System/Process/ServerInotify.php b/System/Process/ServerInotify.php index e78357e9..1d648c08 100644 --- a/System/Process/ServerInotify.php +++ b/System/Process/ServerInotify.php @@ -249,7 +249,9 @@ class ServerInotify extends Process */ public function trigger_reload() { - exec(PHP_BINARY . ' snowflake runtime:builder'); + exec(PHP_BINARY . ' snowflake runtime:builder', $output); + + var_dump(implode(PHP_EOL, $output)); Snowflake::reload(); }