diff --git a/tasks/update-atom-shell-task.coffee b/tasks/update-atom-shell-task.coffee index fa16544f0..8cafe0ab0 100644 --- a/tasks/update-atom-shell-task.coffee +++ b/tasks/update-atom-shell-task.coffee @@ -41,9 +41,6 @@ module.exports = (grunt) -> unzipAtomShell = (zipPath, callback) -> grunt.log.writeln('Unzipping atom-shell') directoryPath = path.dirname(zipPath) - inputStream = fs.createReadStream(zipPath) - inputStream.on 'close', -> callback() - inputStream.on 'error', -> callback(new Error("Unzipping #{zipPath} failed")) try zip = new AdmZip(zipPath);