mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-10 15:21:03 +00:00
Merge pull request #26 from Ivshti/patch-2
Validate the --arch argument
This commit is contained in:
commit
d32cf1034f
6
index.js
6
index.js
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user