fix(codesign): remove comment

This commit is contained in:
George Lima 2019-04-09 23:44:41 -03:00
parent 5fdbc43bd1
commit af063b3808
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ const signBinaries = binaries => new Promise((resolve, reject) => {
const files = await fs.readdirSync(DIST_FOLDER);
const binaries = files
// .filter(name => name.endsWith('.exe') || name.endsWith('.deb') || name.endsWith('.pkg'))
.filter(name => name.endsWith('.exe') || name.endsWith('.deb') || name.endsWith('.pkg'))
.map(bin => ({ path: `${DIST_FOLDER}/${bin}`, name: bin }));
const [, signaturesPath] = await eres(signBinaries(binaries.map(bin => bin.path)));