mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
24 lines
772 B
TypeScript
Executable file
24 lines
772 B
TypeScript
Executable file
import * as path from 'path'
|
|
import * as fs from 'fs'
|
|
|
|
let appPath: string | null = null
|
|
try {
|
|
appPath = path.dirname(require('electron').app.getPath('exe'))
|
|
} catch {
|
|
appPath = path.dirname(require('electron').remote.app.getPath('exe'))
|
|
}
|
|
|
|
if (null != appPath) {
|
|
if(fs.existsSync(path.join(appPath, 'terminus-data'))) {
|
|
fs.renameSync(path.join(appPath, 'terminus-data'), path.join(appPath, 'data'))
|
|
}
|
|
const portableData = path.join(appPath, 'data')
|
|
if (fs.existsSync(portableData)) {
|
|
console.log('reset user data to ' + portableData)
|
|
try {
|
|
require('electron').app.setPath('userData', portableData)
|
|
} catch {
|
|
require('electron').remote.app.setPath('userData', portableData)
|
|
}
|
|
}
|
|
}
|