mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 21:31:17 -04:00
11 lines
283 B
JavaScript
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() );
|
|
});
|
|
};
|