Skip to content

Commit

Permalink
fix: don't pass --verbose to deno binary
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Apr 29, 2024
1 parent 4f1544c commit 5eec874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export async function publish(cwd: string, options: PublishOptions) {
env.DENO_DISABLE_PEDANTIC_NODE_WARNINGS = "true";
}

args.push(...options.publishArgs);
args.push(...options.publishArgs.filter((arg) => arg !== "--verbose"));

await exec(binPath, args, cwd, env);
}
Expand Down

0 comments on commit 5eec874

Please sign in to comment.