mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-13 08:44:12 +03:00
9 lines
316 B
CoffeeScript
9 lines
316 B
CoffeeScript
module.exports = (grunt) ->
|
|
{spawn} = require('./task-helpers')(grunt)
|
|
|
|
grunt.registerTask 'set-development-version', 'Sets version to current SHA-1', ->
|
|
done = @async()
|
|
cmd = 'script/set-version'
|
|
args = [grunt.config.get('atom.buildDir')]
|
|
spawn {cmd, args}, (error, result, code) -> done(error)
|