Just skip sleep

This commit is contained in:
crazywhalecc
2026-04-12 01:12:17 +08:00
parent 4f1ed70c96
commit 39a975dc90

View File

@@ -154,10 +154,10 @@ class PackageInstaller
$this->resolvePackages(); $this->resolvePackages();
} }
if ($this->interactive && !$disable_delay_msg) { // show install or build options in terminal with beautiful output
// show install or build options in terminal with beautiful output $this->printInstallerInfo();
$this->printInstallerInfo();
if ($this->interactive && !$disable_delay_msg) {
InteractiveTerm::notice('Build process will start after 2s ...' . PHP_EOL); InteractiveTerm::notice('Build process will start after 2s ...' . PHP_EOL);
sleep(2); sleep(2);
} }