We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822b565 commit 27c171cCopy full SHA for 27c171c
tools/build-tasks/src/deploy.ts
@@ -154,7 +154,7 @@ export async function deployPackage(packageJsonPath: string): Promise<DeployedPa
154
155
if (isDevBuild) {
156
// NOTE: rootPackage.name had better not have any regex metacharacters
157
- const oldDevBuildPattern = new RegExp('^' + rootPackage.name + '[^/]+-dev[0-9.]+.vsix$');
+ const oldDevBuildPattern = new RegExp('^' + rootPackage.name + '[^/]+-dev[0-9.]+\\.vsix$');
158
// Dev package filenames are of the form
159
// vscode-codeql-0.0.1-dev.2019.9.27.19.55.20.vsix
160
(await fs.readdir(distDir)).filter(name => name.match(oldDevBuildPattern)).map(build => {
0 commit comments