2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-05 22:10:48 +00:00

Validate the --arch argument

This commit is contained in:
Ivo Georgiev 2015-05-11 18:22:10 +03:00
parent e1d0264e2d
commit ca6af870d3

View File

@ -18,6 +18,12 @@ module.exports = function packager (opts, cb) {
if (!platform || !arch || !version) cb(new Error('Must specify platform, arch and version'))
switch (arch) {
case 'ia32': break
case 'x64': break
default: cb(new Error('Unsupported arch'))
}
switch (platform) {
case 'darwin': packager = mac; break
case 'linux': packager = linux; break