We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf96e3e commit 127279fCopy full SHA for 127279f
1 file changed
pkgm.ts
@@ -212,7 +212,7 @@ async function shim(args: string[], basePath: string) {
212
for await (const entry of Deno.readDir(bin_prefix)) {
213
if (!entry.isFile && !entry.isSymlink) continue;
214
const name = entry.name;
215
- const shim = `#!/usr/bin/env -S pkgx --shebang ${name}`;
+ const shim = `#!/usr/bin/env -S pkgx --shebang --quiet ${name}`;
216
217
if (existsSync(join(basePath, "bin", name))) {
218
await Deno.remove(join(basePath, "bin", name));
0 commit comments