allow attached-container

This commit is contained in:
kieferrm 2019-08-13 15:48:26 +00:00
parent a321c9ea3c
commit bbb1be82bf

View file

@ -76,7 +76,7 @@ function cleanRemoteAuthority(remoteAuthority?: string): string {
let ret = 'other';
// Whitelisted remote authorities
['ssh-remote', 'dev-container', 'wsl'].forEach((res: string) => {
['ssh-remote', 'dev-container', 'attached-container', 'wsl'].forEach((res: string) => {
if (remoteAuthority!.indexOf(`${res}+`) === 0) {
ret = res;
}