12 lines
311 B
JavaScript
12 lines
311 B
JavaScript
/*jshint node:true */
|
|
|
|
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.loadNpmTasks('grunt-rename');
|
|
|
|
grunt.config('rename.rename-exe', {
|
|
src: 'build/<%= paths.originalExe[grunt.task.current.args[0]] %>',
|
|
dest: 'build/<%= paths.exe[grunt.task.current.args[0]] %>'
|
|
});
|
|
}; |