Skip to content

Commit

Permalink
Always put a .gitkeep file in the classmaps directory
Browse files Browse the repository at this point in the history
fixes #51
  • Loading branch information
markjaquith committed Jun 1, 2020
1 parent a020748 commit 81f06ee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Mover.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public function deleteTargetDirs()
$this->filesystem->createDir($this->config->dep_directory);
$this->filesystem->deleteDir($this->config->classmap_directory);
$this->filesystem->createDir($this->config->classmap_directory);
$this->filesystem->put($this->config->classmap_directory . '/.gitkeep', '');
}

public function movePackage(Package $package)
Expand Down

0 comments on commit 81f06ee

Please sign in to comment.