From 5a19baa8651ecbb9eabef339b91d100d5107e5ab Mon Sep 17 00:00:00 2001 From: bluwy Date: Tue, 29 Oct 2024 11:35:47 +0800 Subject: [PATCH] fix: add missing serializeCommand --- utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.ts b/utils.ts index 7620858..43122ab 100644 --- a/utils.ts +++ b/utils.ts @@ -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}` }