mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
enforce unconditional copy
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
module.exports = function(config,grunt) {
|
||||
'use strict';
|
||||
|
||||
grunt.registerTask('phantomjs', 'Copy phantomjs binary from node', function() {
|
||||
grunt.registerTask('phantomjs', 'Copy phantomjs binary to vendor/', function() {
|
||||
|
||||
var dest = './vendor/phantomjs/phantomjs';
|
||||
var confDir = './node_modules/phantomjs-prebuilt/lib/';
|
||||
|
||||
if (!grunt.file.exists(dest)){
|
||||
|
||||
src = config.phjs
|
||||
|
||||
if (!src){
|
||||
@@ -31,8 +29,5 @@ module.exports = function(config,grunt) {
|
||||
grunt.fail.warn('No working Phantomjs binary available')
|
||||
}
|
||||
|
||||
} else {
|
||||
grunt.log.writeln('Phantomjs already imported from node');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user