Skip to content

Commit

Permalink
fix workspace default check
Browse files Browse the repository at this point in the history
  • Loading branch information
pavjacko committed Jan 29, 2024
1 parent 70e3911 commit 7119d15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/engine-core/src/tasks/task.rnv.target.launch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const taskRnvTargetLaunch: RnvTaskFn = async (c, parentTask, originTask)
}
const workspaceTarget = c.files.workspace.config?.defaultTargets?.[platform];

if (projectTarget) {
if (workspaceTarget) {
options.push({ name: `${workspaceTarget} (global default)`, value: workspaceTarget });
}

Expand Down

0 comments on commit 7119d15

Please sign in to comment.