Skip to content

Commit

Permalink
fix: add missing serializeCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Oct 29, 2024
1 parent 190b1f5 commit 5a19baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function toCommand(
} else if (typeof task === 'string') {
if (scripts[task] != null) {
const runTaskWithAgent = getCommand(agent, 'run', [task])
await $`${runTaskWithAgent}`
await $`${serializeCommand(runTaskWithAgent)}`
} else {
await $`${task}`
}
Expand Down

0 comments on commit 5a19baa

Please sign in to comment.