We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e424668 commit 57ccee5Copy full SHA for 57ccee5
src/Handler.php
@@ -80,7 +80,12 @@ protected function getCorePackage($operation) {
80
* @param \Composer\Plugin\CommandEvent $event
81
*/
82
public function onCmdBeginsEvent(\Composer\Plugin\CommandEvent $event) {
83
- $this->progress = !($event->getInput()->getOption('no-progress'));
+ if ($event->getInput()->hasOption('no-progress')) {
84
+ $this->progress = !($event->getInput()->getOption('no-progress'));
85
+ }
86
+ else {
87
+ $this->progress = TRUE;
88
89
}
90
91
/**
0 commit comments