Read custom data from experimental scope. Fix #68554

This commit is contained in:
Pine Wu
2019-02-12 11:29:48 -08:00
parent 511a905404
commit ac56ab6272
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ export function getCustomDataPathsFromAllExtensions(): string[] {
contributes.html.experimental.customData &&
Array.isArray(contributes.html.experimental.customData)
) {
const relativePaths: string[] = contributes.html.customData;
const relativePaths: string[] = contributes.html.experimental.customData;
relativePaths.forEach(rp => {
dataPaths.push(path.resolve(extension.extensionPath, rp));
});