From c807675d990a7e9fa2f200076583dbb85f8b2b63 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 20 May 2015 12:24:24 -0700 Subject: [PATCH] Remove log suppressing --- build/Gruntfile.coffee | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 175a5ecae..37a733306 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -31,10 +31,6 @@ module.exports = (grunt) -> # This allows all subsequent paths to the relative to the root of the repo grunt.file.setBase(path.resolve('..')) - if not grunt.option('verbose') - grunt.log.writeln = (args...) -> grunt.log - grunt.log.write = (args...) -> grunt.log - [major, minor, patch] = packageJson.version.split('.') tmpDir = os.tmpdir() appName = if process.platform is 'darwin' then 'Atom.app' else 'Atom' @@ -268,4 +264,5 @@ module.exports = (grunt) -> defaultTasks = ['download-electron', 'download-electron-chromedriver', 'build', 'set-version', 'generate-asar'] defaultTasks.push 'install' unless process.platform is 'linux' + console.log buildDir grunt.registerTask('default', defaultTasks)