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 f319afb commit 5269afaCopy full SHA for 5269afa
src/NodeComposerPlugin.php
@@ -83,14 +83,12 @@ public function onPostUpdate(Event $event)
83
));
84
85
$nodeInstaller->install($this->config->getNodeVersion());
86
-
87
- $this->io->write('');
88
+
89
$installedNodeVersion = $nodeInstaller->isInstalled();
90
if (strpos($installedNodeVersion, 'v' . $this->config->getNodeVersion()) === false) {
91
throw new \RuntimeException('Could not verify node.js installation');
92
} else {
93
- $this->io->write(sprintf(
+ $this->io->overwrite(sprintf(
94
'node.js v%s installed',
95
$this->config->getNodeVersion()
96
0 commit comments