From 39a975dc90c9a9a980982bb8b8b36cff31882da6 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sun, 12 Apr 2026 01:12:17 +0800 Subject: [PATCH] Just skip sleep --- src/StaticPHP/Package/PackageInstaller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/StaticPHP/Package/PackageInstaller.php b/src/StaticPHP/Package/PackageInstaller.php index ac4aa2e0..b4c041df 100644 --- a/src/StaticPHP/Package/PackageInstaller.php +++ b/src/StaticPHP/Package/PackageInstaller.php @@ -154,10 +154,10 @@ class PackageInstaller $this->resolvePackages(); } - if ($this->interactive && !$disable_delay_msg) { - // show install or build options in terminal with beautiful output - $this->printInstallerInfo(); + // show install or build options in terminal with beautiful output + $this->printInstallerInfo(); + if ($this->interactive && !$disable_delay_msg) { InteractiveTerm::notice('Build process will start after 2s ...' . PHP_EOL); sleep(2); }