mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
24 lines
667 B
TypeScript
24 lines
667 B
TypeScript
|
import { homedir } from 'os';
|
||
|
import { toSystemSlashes } from './path-utils';
|
||
|
|
||
|
export default (profileFromArgs: string, appName: string) => {
|
||
|
let profileDir = '';
|
||
|
let homeDir = '';
|
||
|
|
||
|
if (profileFromArgs) {
|
||
|
profileDir = profileFromArgs;
|
||
|
homeDir = profileDir;
|
||
|
} else if (process && process.env && process.env.PORTABLE_EXECUTABLE_DIR) {
|
||
|
profileDir = `${process.env.PORTABLE_EXECUTABLE_DIR}/JoplinProfile`;
|
||
|
homeDir = process.env.PORTABLE_EXECUTABLE_DIR;
|
||
|
} else {
|
||
|
profileDir = `${homedir()}/.config/${appName}`;
|
||
|
homeDir = homedir();
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
rootProfileDir: toSystemSlashes(profileDir, 'linux'),
|
||
|
homeDir: toSystemSlashes(homeDir, 'linux'),
|
||
|
};
|
||
|
};
|