Skip to content

Commit 127279f

Browse files
committed
and --quiet
1 parent bf96e3e commit 127279f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkgm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ async function shim(args: string[], basePath: string) {
212212
for await (const entry of Deno.readDir(bin_prefix)) {
213213
if (!entry.isFile && !entry.isSymlink) continue;
214214
const name = entry.name;
215-
const shim = `#!/usr/bin/env -S pkgx --shebang ${name}`;
215+
const shim = `#!/usr/bin/env -S pkgx --shebang --quiet ${name}`;
216216

217217
if (existsSync(join(basePath, "bin", name))) {
218218
await Deno.remove(join(basePath, "bin", name));

0 commit comments

Comments
 (0)