Skip to content

Commit

Permalink
Fix regression of CopyDevPaths only happening locally
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzap committed Apr 30, 2024
1 parent cbad106 commit 1749d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Task/CopyDevPaths.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function name(): string
*/
public function enabled(TaskConfig $taskConfig): bool
{
return $taskConfig->isLocal() || $taskConfig->syncDevPaths();
return $taskConfig->isFullMode() || $taskConfig->syncDevPaths();
}

/**
Expand Down

0 comments on commit 1749d8f

Please sign in to comment.