Skip to content

Commit f1f5314

Browse files
committed
fix(install): fix path
1 parent fd2dcba commit f1f5314

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/install.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const compVer = require('compare-versions')
77
const DB_VER = 'v0.1.0' // current db version
88
const MIN_DB_VER = 'v0.1.0' // minimum checkpoint db version
99

10-
const globalElements = require('./classes/globalElements')
10+
const globalElements = require('../src/structures/globalElements')
1111
globalElements(false)
1212
console.log('Loaded Global Properties and Functions.')
1313

@@ -21,7 +21,7 @@ run().then(installDeps).then((v) => {
2121
})
2222

2323
async function run () {
24-
const config = require('./config')
24+
const config = require('../config')
2525

2626
console.log('Initializing Database...')
2727
switch (config.db.type) {

0 commit comments

Comments
 (0)