Merge pull request #101 from majuss/master

Missing extension in minimal example
This commit is contained in:
Alexander Cerutti
2022-02-05 23:31:36 +01:00
committed by GitHub

View File

@@ -172,8 +172,8 @@ try {
const { wwdr, signerCert, signerKey, signerKeyPassphrase } = getCertificatesContentsSomehow(); const { wwdr, signerCert, signerKey, signerKeyPassphrase } = getCertificatesContentsSomehow();
const examplePass = new PKPass({ const examplePass = new PKPass({
"thumbnail": Buffer.from([ ... ]), "thumbnail.png": Buffer.from([ ... ]),
"icon": Buffer.from([ ... ]), "icon.png": Buffer.from([ ... ]),
"pass.json": Buffer.from([ ... ]), "pass.json": Buffer.from([ ... ]),
"it.lproj/pass.strings": Buffer.from([ ... ]) "it.lproj/pass.strings": Buffer.from([ ... ])
}, },