Skip to content

Commit acac6bb

Browse files
committed
check sign pkg/dmg files
1 parent 12c438d commit acac6bb

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/check-signature.ts

-5
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ const codesign = async (opts: NotarizeStapleOptions) => {
2525
return result;
2626
};
2727
export async function checkSignatures(opts: NotarizeStapleOptions): Promise<void> {
28-
const fileExt = path.extname(opts.appPath);
29-
if (fileExt === '.dmg' || fileExt === '.pkg') {
30-
d('skipping codesign check for dmg or pkg file');
31-
return;
32-
}
3328
const [codesignResult, codesignInfo] = await Promise.all([codesign(opts), codesignDisplay(opts)]);
3429
let error = '';
3530

0 commit comments

Comments
 (0)