mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 12:16:34 +03:00
12 lines
341 B
TypeScript
Executable File
12 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)
|
|
}
|