tabby/app/lib/portable.ts
2021-06-29 23:57:04 +02:00

11 lines
341 B
TypeScript
Executable file

import * as path from 'path'
import * as fs from 'fs'
import * as electron from 'electron'
const appPath = path.dirname(electron.app.getPath('exe'))
const portableData = path.join(appPath, 'data')
if (fs.existsSync(portableData)) {
console.log('reset user data to ' + portableData)
electron.app.setPath('userData', portableData)
}