From 16a7827e71b911d8b3948ee9d5541e40d6c0d0cd Mon Sep 17 00:00:00 2001 From: Dark-LYNN Date: Thu, 2 Jan 2025 15:45:30 +0100 Subject: [PATCH] chore: making ready for akira. --- src/native/getModuleCount.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/native/getModuleCount.ts b/src/native/getModuleCount.ts index 309c932..1eca89d 100644 --- a/src/native/getModuleCount.ts +++ b/src/native/getModuleCount.ts @@ -1,7 +1,7 @@ import fs from 'fs'; -import path from 'path'; +import path, { join } from 'path'; -const baseDir: string = '/media/lynnux/[E] Other/Codes/@Github/@LynnuxDev/Akira-Beta'; +const baseDir: string = join(__dirname,'../..'); const isDevelopment: boolean = process.env.NODE_ENV === 'development'; const commandsPath: string = isDevelopment ? 'src/commands' : 'dist/commands';