sizzle/tasks/tag.js
JuanMa Ruiz 62061d04f1 Build: Switch from JSHint & JSCS to ESLint
Fixes gh-438
Closes gh-442
2019-05-29 17:01:29 +02:00

10 lines
231 B
JavaScript

"use strict";
var exec = require( "child_process" ).exec;
module.exports = function( grunt ) {
grunt.registerTask( "tag", "Tag the specified version", function( version ) {
exec( "git tag " + version, this.async() );
} );
};