fix(bootstrap): Fix syntax bug in script bootstrap

This commit is contained in:
Ben Gotow 2015-07-24 19:48:31 -07:00
parent 73a2f7c5c7
commit c0682e4eb5

View file

@ -130,7 +130,7 @@ function bootstrap() {
}
});
commands.concat [
commands = commands.concat([
{
command: moduleInstallCommand,
message: m4
@ -148,7 +148,7 @@ function bootstrap() {
command: downloadElectronCmd,
message: m7
}
];
]);
process.chdir(path.dirname(__dirname));
executeCommands(commands, process.exit);