From 01589e509fa794313d07a69efcc3dd168227d2e9 Mon Sep 17 00:00:00 2001 From: Netkas Date: Sun, 1 Oct 2023 16:35:48 -0400 Subject: [PATCH] Minor correction --- src/ncc/CLI/Management/PackageManagerMenu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncc/CLI/Management/PackageManagerMenu.php b/src/ncc/CLI/Management/PackageManagerMenu.php index 5d91624..efdd014 100644 --- a/src/ncc/CLI/Management/PackageManagerMenu.php +++ b/src/ncc/CLI/Management/PackageManagerMenu.php @@ -200,7 +200,7 @@ Console::out(sprintf('You are about to install a remote package from %s, this will require ncc to fetch and or build the package', $package_input->getRepository())); - if(!Console::getBooleanInput('Do you want to continue?')) + if(!$auto_yes && !Console::getBooleanInput('Do you want to continue?')) { Console::out('Installation aborted'); return 0;