Skip to content

Commit

Permalink
Fix coding standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Jul 12, 2017
1 parent 4975189 commit ff6c32c
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 @@ -45,8 +45,8 @@ public static function createSymlinks(Event $event, Filesystem $filesystem = nul
}

// Build and execute final command.
$mkdir_cmd = 'mkdir -p ' . $targetDirname;
exec($mkdir_cmd);
$mkdirCmd = 'mkdir -p ' . $targetDirname;
exec($mkdirCmd);
$cmd = 'cd ' . $targetDirname . ' && ' . $command . ' ' . $sourceRelativePath . ' ' . basename($targetRelativePath);
exec($cmd);

Expand Down

0 comments on commit ff6c32c

Please sign in to comment.