Skip to content

Commit

Permalink
Do not "clean" $workingDir
Browse files Browse the repository at this point in the history
Source of `$workingDir` is `getcwd()`.
Automated tests pass on MacOS.
Manual test passes on Windows: coenjacobs#90 (comment)
  • Loading branch information
BrianHenryIE committed Dec 16, 2020
1 parent 832a558 commit 7bde094
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mover.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ class Mover
public function __construct($workingDir, $config)
{
$this->config = $config;
$this->workingDir = DIRECTORY_SEPARATOR . $this->clean($workingDir);

$this->workingDir = $workingDir;

$this->dep_directory = $this->clean($config->dep_directory);
$this->classmap_directory = $this->clean($config->classmap_directory);
Expand Down

0 comments on commit 7bde094

Please sign in to comment.