Skip to content

Commit

Permalink
fix signature zip path
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Jun 3, 2024
1 parent b888537 commit 66f17d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1860,7 +1860,7 @@ export async function signPackage(packagePath: string, signScript: string): Prom
});
});
const signatureFile = path.join(path.dirname(packagePath), '.signature.p7s');
return zip(manifestPath, signatureFile);
return zip(manifestPath, signatureFile, path.basename(packagePath, '.vsix') + '.signature.zip');
}

export async function packageCommand(options: IPackageOptions = {}): Promise<any> {
Expand Down

0 comments on commit 66f17d5

Please sign in to comment.