Skip to content

Commit 35e647f

Browse files
authored
Update packages/cloudflare/src/cli/utils/run-wrangler.ts
1 parent c0ec888 commit 35e647f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cloudflare/src/cli/utils/run-wrangler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function injectPassthroughFlagForArgs(options: BuildOptions, args: string[]) {
2929

3030
const flagInArgsIndex = args.findIndex((v) => v.startsWith("--"));
3131
if (flagInArgsIndex !== -1) {
32-
args.splice(flagInArgsIndex, 0, '--');
32+
args.splice(flagInArgsIndex, 0, "--");
3333
}
3434

3535
return args;

0 commit comments

Comments
 (0)