blob: 910197dd93740e7b6f682d0f3b4f680eea5731b9 [file] [log] [blame]
module.exports = function(grunt) {
grunt.registerTask('print', 'Print the specified text.', function(text) {
console.log('OUTPUT: ' + text);
// console.log(process.cwd());
});
};