Skip to content

Commit

Permalink
Fixed logfile path
Browse files Browse the repository at this point in the history
  • Loading branch information
Padam87 committed May 21, 2015
1 parent 8e49536 commit 230fd5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Util/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function read(InputInterface $input = null, $group = null)
);

if ($input->hasOption('log-dir') && $annotation->logFile !== null) {
$logDir = trim($input->getOption('log-dir'), '\\/');
$logDir = rtrim($input->getOption('log-dir'), '\\/');
$annotation->logFile = $logDir . '/' . $annotation->logFile;
}

Expand Down

0 comments on commit 230fd5e

Please sign in to comment.