From 10d404d3b9dab32dd937c8bb6de5e1c77f31ade1 Mon Sep 17 00:00:00 2001 From: Ulugbek Abdullaev Date: Fri, 24 Feb 2023 00:18:19 +0100 Subject: [PATCH] fix https://github.com/microsoft/vscode/issues/175292 --- src/package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.ts b/src/package.ts index aef0a5d8..1012b8c4 100644 --- a/src/package.ts +++ b/src/package.ts @@ -723,7 +723,7 @@ export class MarkdownProcessor extends BaseProcessor { let contents = await read(file); if (/This is the README for your extension /.test(contents)) { - throw new Error(`Make sure to edit the README.md file before you package or publish your extension.`); + throw new Error(`It seems the README.md still contains template text. Make sure to edit the README.md file before you package or publish your extension.`); } if (this.rewriteRelativeLinks) {