Skip to content

Commit 1749d8f

Browse files
committed
Fix regression of CopyDevPaths only happening locally
1 parent cbad106 commit 1749d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Task/CopyDevPaths.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function name(): string
6767
*/
6868
public function enabled(TaskConfig $taskConfig): bool
6969
{
70-
return $taskConfig->isLocal() || $taskConfig->syncDevPaths();
70+
return $taskConfig->isFullMode() || $taskConfig->syncDevPaths();
7171
}
7272

7373
/**

0 commit comments

Comments
 (0)