From c266b006c18ccabc91b93eae63b7bc0be6a58747 Mon Sep 17 00:00:00 2001 From: Atsushi Eno Date: Mon, 1 Dec 2025 16:05:00 +0900 Subject: [PATCH] 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. --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0476259..a3326c6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env node --no-warnings=ExperimentalWarning +#!/usr/bin/env node import { isTests, ManagerLocal, RegistryType } from '@open-audio-stack/core'; import { Command } from 'commander';