diff --git a/src/index.ts b/src/index.ts index 7d0e12b..79e6820 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,12 +11,9 @@ logger.info("Starting intialization..."); const configsFolder = process.env.CONFIGS_PATH || "./"; -const fileContent = await readFile( - join(configsFolder, "efibootmgr.config.json"), - { - encoding: "utf8", - }, -).catch((e) => { +const fileContent = await readFile(join(configsFolder, "config.json"), { + encoding: "utf8", +}).catch((e) => { throw new Error("Error while reading config!", { cause: e }); });