Skip to content

Commit bf8496e

Browse files
committed
🐛 fixed return code bug
1 parent 190ef1e commit bf8496e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/InstallCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ protected function execute(InputInterface $input, OutputInterface $output)
3636

3737
if ($process->isSuccessful()) {
3838
$output->writeln("<comment>$package installed successfully!</comment>");
39+
return 0;
3940
}
41+
42+
return 1;
4043
}
4144

4245
/**

0 commit comments

Comments
 (0)