diff --git a/script/cibuild b/script/cibuild index 9358cc09c..08ff65c6e 100755 --- a/script/cibuild +++ b/script/cibuild @@ -94,18 +94,3 @@ cp.safeExec.bind(global, 'npm install npm --loglevel error', {cwd: path.resolve( }); })(); })(); - - -process.on('exit', function() { - console.log('DONE-----'); - try { - var fs = require('fs'); - var squirrelLog = path.resolve(__dirname, '..', 'build', 'node_modules', 'grunt-atom-shell-installer', 'vendor', 'SquirrelSetup.log'); - console.log(squirrelLog, fs.existsSync(squirrelLog)); - if (fs.existsSync(squirrelLog)) - console.log(fs.readFileSync(squirrelLog, 'utf8')); - } catch (error) { - console.error(error.message); - } - -});