Skip to content

Commit

Permalink
Remove whitespaces at end of line.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Sep 15, 2020
1 parent 4724dce commit 2cb85ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ScriptHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ public static function createSymlinks(Event $event, Filesystem $filesystem = nul
$command = 'cp -r';
$message = '<info>Copying folder "%s" into "%s"</info>';
}

$event->getIO()->write(sprintf(
$message,
$sourceRelativePath,
$targetRelativePath
));

// Escape spaces in path.
$targetDirname = preg_replace('/(?<!\\))[ ]/', '\\ ', $targetDirname);

Expand Down

0 comments on commit 2cb85ef

Please sign in to comment.