mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
enforce unconditional copy
This commit is contained in:
parent
c669de1169
commit
699c515369
@ -1,38 +1,33 @@
|
|||||||
module.exports = function(config,grunt) {
|
module.exports = function(config,grunt) {
|
||||||
'use strict';
|
'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 dest = './vendor/phantomjs/phantomjs';
|
||||||
var confDir = './node_modules/phantomjs-prebuilt/lib/';
|
var confDir = './node_modules/phantomjs-prebuilt/lib/';
|
||||||
|
|
||||||
if (!grunt.file.exists(dest)){
|
src = config.phjs
|
||||||
|
|
||||||
src = config.phjs
|
if (!src){
|
||||||
|
var m=grunt.file.read(confDir+"location.js")
|
||||||
|
var src=/= \"([^\"]*)\"/.exec(m)[1];
|
||||||
|
|
||||||
if (!src){
|
if (!grunt.file.isPathAbsolute(src)) {
|
||||||
var m=grunt.file.read(confDir+"location.js")
|
src = confDir+src;
|
||||||
var src=/= \"([^\"]*)\"/.exec(m)[1];
|
|
||||||
|
|
||||||
if (!grunt.file.isPathAbsolute(src)) {
|
|
||||||
src = confDir+src;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
grunt.config('copy.phantom_bin', {
|
|
||||||
src: src,
|
|
||||||
dest: dest,
|
|
||||||
options: { mode: true},
|
|
||||||
});
|
|
||||||
grunt.task.run('copy:phantom_bin');
|
|
||||||
} catch (err) {
|
|
||||||
grunt.verbose.writeln(err);
|
|
||||||
grunt.fail.warn('No working Phantomjs binary available')
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
grunt.log.writeln('Phantomjs already imported from node');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
grunt.config('copy.phantom_bin', {
|
||||||
|
src: src,
|
||||||
|
dest: dest,
|
||||||
|
options: { mode: true},
|
||||||
|
});
|
||||||
|
grunt.task.run('copy:phantom_bin');
|
||||||
|
} catch (err) {
|
||||||
|
grunt.verbose.writeln(err);
|
||||||
|
grunt.fail.warn('No working Phantomjs binary available')
|
||||||
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user