Skip to content

Commit c266b00

Browse files
committed
Do not add extra argument to /usr/bin/env
Fixes #16. /usr/bin/env on Linux and many other Unix-y systems do not seem to split arguments to env, resulting in attempting to run the rest of the argument strings as one single command and failing.
1 parent 8c1b8bd commit c266b00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env node --no-warnings=ExperimentalWarning
1+
#!/usr/bin/env node
22

33
import { isTests, ManagerLocal, RegistryType } from '@open-audio-stack/core';
44
import { Command } from 'commander';

0 commit comments

Comments
 (0)