From 99937f61f6a4ede75fc57a6690959f76dde8809b Mon Sep 17 00:00:00 2001 From: GuriZenit Date: Sat, 14 Sep 2024 02:06:36 -0300 Subject: [PATCH] api/setup: fix wrong misc path --- api/src/util/setup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/util/setup.js b/api/src/util/setup.js index 7796ea22..e9d1beae 100644 --- a/api/src/util/setup.js +++ b/api/src/util/setup.js @@ -1,7 +1,7 @@ import { existsSync, unlinkSync, appendFileSync } from "fs"; import { createInterface } from "readline"; -import { Cyan, Bright } from "./misc/console-text.js"; -import { loadJSON } from "./misc/load-from-fs.js"; +import { Cyan, Bright } from "../misc/console-text.js"; +import { loadJSON } from "../misc/load-from-fs.js"; import { execSync } from "child_process"; const { version } = loadJSON("./package.json");