FUCK! The problem is that the script must run as root. Was looking in the wrong dir.
This commit is contained in:
parent
74af6218e0
commit
30e8636ea8
|
@ -6,11 +6,7 @@ const path = require('path')
|
|||
const sqlite3 = require('sqlite3').verbose()
|
||||
const squel = require('squel')
|
||||
|
||||
const DB_DIR = path.join(os.homedir(), '.config/intval3/)
|
||||
if (!fs.existsSync(DB_DIR)) {
|
||||
fs.mkdirSync(DB_DIR)
|
||||
}
|
||||
const DB_FILE = path.join(os.homedir(), '.config/intval3/intval3.db')
|
||||
const DB_FILE = path.join(os.homedir(), '.intval3.db')
|
||||
const db = new sqlite3.Database(DB_FILE)
|
||||
|
||||
class DB {
|
||||
|
|
Loading…
Reference in New Issue