Skip to content

Commit

Permalink
feat(maker): declare deb maker support for darwin & linux platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
anulman authored and MarshallOfSound committed Apr 25, 2017
1 parent f79f6f7 commit f10fbd1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/makers/linux/deb.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ function debianArch(nodeArch) {
}
}

export const supportedPlatforms = [
'darwin',
'linux',
];

export default async (dir, appName, targetArch, forgeConfig, packageJSON) => { // eslint-disable-line
const arch = debianArch(targetArch);
const outPath = path.resolve(dir, '../make', `${packageJSON.name}_${packageJSON.version}_${arch}.deb`);
Expand Down

0 comments on commit f10fbd1

Please sign in to comment.