Skip to content

Commit 72d239b

Browse files
committed
removing null $options being passed to $fs->mirror() when sourceDir is not empty
1 parent 3c2f812 commit 72d239b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PatternLab/Fetch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ protected function mirrorDist($sourceDir, $tempDirDist) {
203203
// mirror dist to source
204204
Console::writeInfo("installing the starterkit files...");
205205
$fs = new Filesystem();
206-
$fs->mirror($tempDirDist, $sourceDir, null, $options);
206+
$fs->mirror($tempDirDist, $sourceDir, null);
207207
Console::writeInfo("starterkit files have been installed...");
208208

209209
}

0 commit comments

Comments
 (0)