Remove unneeded stdout/stderr output forwarding

This commit is contained in:
Kevin Sawicki
2013-06-25 17:47:21 -07:00
parent 6930fe0eff
commit 20991381bd

View File

@@ -203,10 +203,7 @@ module.exports = (grunt) ->
spawn cmd: 'pkill', args: ['Atom'], -> callback()
commands.push (callback) ->
atomBinary = path.join(CONTENTS_DIR, 'MacOS', 'Atom')
spawn cmd: atomBinary, args: ['--test', "--resource-path=#{__dirname}"], (error, result) ->
process.stderr.write(result.stderr)
process.stdout.write(result.stdout)
callback(error)
spawn cmd: atomBinary, args: ['--test', "--resource-path=#{__dirname}"], (error) -> callback(error)
grunt.util.async.waterfall commands, (error) -> done(error)
grunt.registerTask 'nof', 'Un-focus all specs', ->