From 7b681f8733b003d5eccbdc0c3ef801673caf2df9 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 20 Jun 2019 08:22:22 -0700 Subject: [PATCH] Add proposed api check for shell API Part of #75091 --- src/vs/workbench/api/node/extHost.api.impl.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index 9898fa25685b2..8818154961399 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -255,6 +255,7 @@ export function createApiFactory( return extHostClipboard; }, get shell() { + checkProposedApiEnabled(extension); return extHostTerminalService.getDefaultShell(configProvider); }, openExternal(uri: URI) {