Skip to content

Commit e1dd2f7

Browse files
committed
fix: fixing bunx command
1 parent 53ef906 commit e1dd2f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/package-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function packageManagerExecute(
3737
case 'pnpm':
3838
return environment.execute('pnpx', [pkg, ...args], cwd)
3939
case 'bun':
40-
return environment.execute('bunx', [pkg, ...args], cwd)
40+
return environment.execute('bunx', ['--bun', pkg, ...args], cwd)
4141
case 'deno':
4242
return environment.execute('deno', ['run', `npm:${pkg}`, ...args], cwd)
4343
default:

0 commit comments

Comments
 (0)