From f89e97a9dd32d47eb85d4aa90d9761c3166b553f Mon Sep 17 00:00:00 2001 From: andrew Date: Sat, 10 Feb 2024 23:03:50 +0900 Subject: [PATCH] fix: missing shebang --- .env | 2 +- Tools/node/lib/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.env b/.env index 04eb5500..4e4bd9f5 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -VERSION="3.0.3-beta.1" +VERSION="3.0.3-beta.2" MAJOR=3 MINOR=0 PATCH=3 diff --git a/Tools/node/lib/index.ts b/Tools/node/lib/index.ts index 9ee51ec7..597a71cf 100644 --- a/Tools/node/lib/index.ts +++ b/Tools/node/lib/index.ts @@ -1,3 +1,4 @@ +#!/usr/bin/env node import { launchBebopc, resolveBebopcPath, setExecutableBit } from "./common"; const args = process.argv.slice(2);