Skip to content

Commit bdf508f

Browse files
committed
Only supported for real signing
1 parent afdbcef commit bdf508f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/signingTasks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ async function verifyVsix(): Promise<void> {
9292
return;
9393
}
9494

95-
if (signType === 'test') {
96-
console.log('Test signing verification is not supported. Skipping VSIX verification.');
95+
if (signType.toLowerCase() !== 'real') {
96+
console.log('Signing verification is only supported for real signing. Skipping VSIX verification.');
9797
return;
9898
}
9999

0 commit comments

Comments
 (0)