File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/vs/platform/environment/electron-main Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 6
6
import { memoize } from 'vs/base/common/decorators' ;
7
7
import { join } from 'vs/base/common/path' ;
8
8
import { isLinux } from 'vs/base/common/platform' ;
9
+ import { URI } from 'vs/base/common/uri' ;
9
10
import { createStaticIPCHandle } from 'vs/base/parts/ipc/node/ipc.net' ;
10
11
import { IEnvironmentService , INativeEnvironmentService } from 'vs/platform/environment/common/environment' ;
11
12
import { NativeEnvironmentService } from 'vs/platform/environment/node/environmentService' ;
@@ -68,6 +69,9 @@ export class EnvironmentMainService extends NativeEnvironmentService implements
68
69
@memoize
69
70
get useCodeCache ( ) : boolean { return ! ! this . codeCachePath ; }
70
71
72
+ @memoize
73
+ override get userRoamingDataHome ( ) : URI { return this . appSettingsHome ; }
74
+
71
75
unsetSnapExportedVariables ( ) {
72
76
if ( ! isLinux ) {
73
77
return ;
You can’t perform that action at this time.
0 commit comments