Skip to content
Snippets Groups Projects
Commit 9c236fef authored by Daniel Hürtgen's avatar Daniel Hürtgen
Browse files

TASK: Remove unnecessary newline while printing to stdout

parent ee308009
Branches
Tags
1 merge request!22Release 0.3.1
...@@ -110,7 +110,6 @@ class Installer extends LibraryInstaller ...@@ -110,7 +110,6 @@ class Installer extends LibraryInstaller
$destPath = $destStandardsBasePath . DIRECTORY_SEPARATOR . $sourceStandard->getName(); $destPath = $destStandardsBasePath . DIRECTORY_SEPARATOR . $sourceStandard->getName();
$filesystem->mirror($sourcePath, $destPath, null, array('override' => $override)); $filesystem->mirror($sourcePath, $destPath, null, array('override' => $override));
} }
$this->io->writeError('');
} }
/** /**
...@@ -132,7 +131,6 @@ class Installer extends LibraryInstaller ...@@ -132,7 +131,6 @@ class Installer extends LibraryInstaller
$this->filesystem->removeDirectory($destinationStandard->getPath()); $this->filesystem->removeDirectory($destinationStandard->getPath());
} }
$this->io->writeError('');
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment