mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-03 07:44:02 +01:00
Merge pull request #191607 from microsoft/sandy081/required-lynx
fix #191374
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
import { memoize } from 'vs/base/common/decorators';
|
||||
import { join } from 'vs/base/common/path';
|
||||
import { isLinux } from 'vs/base/common/platform';
|
||||
import { URI } from 'vs/base/common/uri';
|
||||
import { createStaticIPCHandle } from 'vs/base/parts/ipc/node/ipc.net';
|
||||
import { IEnvironmentService, INativeEnvironmentService } from 'vs/platform/environment/common/environment';
|
||||
import { NativeEnvironmentService } from 'vs/platform/environment/node/environmentService';
|
||||
@@ -68,6 +69,9 @@ export class EnvironmentMainService extends NativeEnvironmentService implements
|
||||
@memoize
|
||||
get useCodeCache(): boolean { return !!this.codeCachePath; }
|
||||
|
||||
@memoize
|
||||
override get userRoamingDataHome(): URI { return this.appSettingsHome; }
|
||||
|
||||
unsetSnapExportedVariables() {
|
||||
if (!isLinux) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user