mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05:00
Remove unneeded stdout/stderr output forwarding
This commit is contained in:
@@ -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', ->
|
||||
|
||||
Reference in New Issue
Block a user