Skip to content

Commit

Permalink
test old root dir config
Browse files Browse the repository at this point in the history
  • Loading branch information
JoCat committed Nov 13, 2023
1 parent 96c06d1 commit cbd3b77
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Aurora files ignore
build
out
game

# Logs
logs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurora-launcher-app",
"version": "0.0.4-beta.8",
"version": "0.0.4-beta.9",
"description": "Launcher for Minecraft",
"main": "build/main/index.js",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/main/helpers/StorageHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { existsSync, mkdirSync } from 'fs';
import { resolve } from 'path';

export class StorageHelper {
static storageDir: string = resolve(process.cwd(), 'game');
static storageDir: string = resolve(__dirname, '../game');
static assetsDir: string = resolve(StorageHelper.storageDir, 'assets');
static clientsDir: string = resolve(StorageHelper.storageDir, 'clients');
static librariesDir: string = resolve(
Expand Down

0 comments on commit cbd3b77

Please sign in to comment.