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