From 233b989212453188f5b3ed24a149d5672860fedc Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 26 Jun 2023 02:38:29 -0400 Subject: [PATCH] refactor: change KERNEL_FILE env to MODULE_FILE env --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 07bbaaa..a6de900 100644 --- a/src/index.ts +++ b/src/index.ts @@ -25,7 +25,7 @@ if (!key) { }); } -let file = process.env.KERNEL_FILE; +let file = process.env.MODULE_FILE; if (!file || !(await fileExists(file))) { const cwd = process.cwd();