Enable postinstall downloading of C++ binaries

This commit is contained in:
Ben Gotow 2017-09-05 14:16:34 -07:00
parent ea6cf9e637
commit efcf5162d0

View file

@ -90,9 +90,9 @@ npm('install', {cwd: './app', env: 'electron'}).then(() => {
// if the user hasn't cloned the private mailsync module, download
// the binary for their operating system that was shipped to S3.
// if (!fs.existsSync('./mailsync/build.sh')) {
// console.log(`\n-- Downloading a compiled version of Mailspring mailsync --`)
// downloadMailsync();
// }
if (!fs.existsSync('./mailsync/build.sh')) {
console.log(`\n-- Downloading a compiled version of Mailspring mailsync --`)
downloadMailsync();
}
});
});