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 93ae49a commit 98081afCopy full SHA for 98081af
src/Handler.php
@@ -79,7 +79,12 @@ protected function getCorePackage($operation) {
79
* @param \Composer\Plugin\CommandEvent $event
80
*/
81
public function onCmdBeginsEvent(\Composer\Plugin\CommandEvent $event) {
82
- $this->progress = !($event->getInput()->getOption('no-progress'));
+ if ($event->getInput()->hasOption('no-progress')) {
83
+ $this->progress = !($event->getInput()->getOption('no-progress'));
84
+ }
85
+ else {
86
+ $this->progress = TRUE;
87
88
}
89
90
/**
0 commit comments