Skip to content

Commit

Permalink
fixup! C3 - ensure shell commands in logging are reasonably quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Nov 24, 2023
1 parent aed7c14 commit c06c331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-cloudflare/src/helpers/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const runCommand = async (
): Promise<string> => {
return printAsyncStatus({
useSpinner: opts.useSpinner ?? opts.silent,
startText: opts.startText || command.join(" "),
startText: opts.startText || quoteShellArgs(command),
doneText: opts.doneText,
promise() {
const [executable, ...args] = command;
Expand Down

0 comments on commit c06c331

Please sign in to comment.