From 0fd4ef6d8eaa29d887704d0fcc0eaf2b302dddbe Mon Sep 17 00:00:00 2001 From: Ahammar Yassine Date: Tue, 4 Dec 2018 17:47:45 +0100 Subject: [PATCH] Ask confirmation when is run as admin Use return instead of exit for the Application to run cleanly --- src/Composer/Console/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Console/Application.php b/src/Composer/Console/Application.php index 9478561fb..c148c73fa 100644 --- a/src/Composer/Console/Application.php +++ b/src/Composer/Console/Application.php @@ -210,7 +210,7 @@ class Application extends BaseApplication if ($io->isInteractive()) { if (!$io->askConfirmation('Continue as root/super user [yes]? ', true)) { - exit(0); + return 0; } } }