fix path issues with user home dir
This commit is contained in:
parent
6e734c7fad
commit
1c4449565e
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@bitwarden/cli",
|
||||
"version": "0.0.5",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -10,11 +10,11 @@ export class LowdbStorageService implements StorageService {
|
|||
constructor(appDirName: string) {
|
||||
let path = null;
|
||||
if (process.platform === 'darwin') {
|
||||
path = process.env.HOME + 'Library/Application Support';
|
||||
path = process.env.HOME + '/Library/Application Support';
|
||||
} else if (process.platform === 'win32') {
|
||||
path = process.env.APPDATA;
|
||||
} else {
|
||||
path = process.env.HOME + '.config';
|
||||
path = process.env.HOME + '/.config';
|
||||
}
|
||||
path += ('/' + appDirName + '/data.json');
|
||||
|
||||
|
|
Loading…
Reference in New Issue