Skip to content

Commit

Permalink
Removing the line that caused the initial error in CopyDir.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Mar 15, 2015
1 parent 883146e commit 6fa55a0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Task/FileSystem/CopyDir.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ protected function copyDir($src, $dst)
if (false === $dir) {
throw new TaskException($this, "Cannot open source directory '" . $src . "'");
}
@mkdir($dst, $this->chmod);
if (!is_dir($dst)) {
mkdir($dst, $this->chmod, true);
}
Expand Down

0 comments on commit 6fa55a0

Please sign in to comment.