Files
awx/awx/ui/client/lib/sizzle/tasks/commit.js
2015-07-27 10:19:14 -04:00

11 lines
283 B
JavaScript

"use strict";
var exec = require( "child_process" ).exec;
module.exports = function( grunt ) {
grunt.registerTask( "commit", "Add and commit changes", function( message ) {
// Always add dist directory
exec( "git add dist && git commit -m " + message, this.async() );
});
};