From 3bf7f6ed5fa348d7983a4ae3bf17d280d5a5ed13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 20 Jan 2015 17:53:01 +0100 Subject: [PATCH] Updated build post processsing to include vendor dir --- tasks/build_task.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/build_task.js b/tasks/build_task.js index 6d176cc603f..8b9fc23a079 100644 --- a/tasks/build_task.js +++ b/tasks/build_task.js @@ -41,16 +41,16 @@ module.exports = function(grunt) { options: { mode: true}, dest: '<%= tempDir %>' }); - grunt.config('copy.backend_conf', { + grunt.config('copy.backend_files', { cwd: '../', expand: true, - src: ['conf/*', '!conf/grafana.dev.ini'], + src: ['conf/*', 'vendor/**/*', '!conf/grafana.dev.ini'], dest: '<%= tempDir %>' }); grunt.task.run('copy:dist_to_tmp'); grunt.task.run('clean:dest_dir'); grunt.task.run('copy:backend_bin'); - grunt.task.run('copy:backend_conf'); + grunt.task.run('copy:backend_files'); } });