mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
7 lines
226 B
CoffeeScript
7 lines
226 B
CoffeeScript
module.exports = (grunt) ->
|
|
{spawn} = require('./task-helpers')(grunt)
|
|
|
|
grunt.registerTask 'update-atom-shell', 'Update atom-shell', ->
|
|
done = @async()
|
|
spawn cmd: 'script/update-atom-shell', (error) -> done(error)
|