Files
taimed/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv-child.js
2025-07-24 17:21:45 +08:00

8 lines
153 B
JavaScript

module.exports = function(grunt) {
grunt.registerTask('default', function(text) {
console.log('OUTPUT: ' + process.execArgv.join(' '));
});
};