mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix for relative path
This commit is contained in:
parent
189796891e
commit
2513639499
@ -1,11 +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 from node', function() {
|
||||||
var m=grunt.file.read("./node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/location.js")
|
|
||||||
var p=/= \"([^\"]*)\"/.exec(m);
|
var dest = './vendor/phantomjs/phantomjs';
|
||||||
if (grunt.file.exists(p[1])) {
|
var confDir = './node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/'
|
||||||
grunt.log.writeln('Using '+ p[1]);
|
|
||||||
grunt.file.copy(p[1],'vendor/phantomjs/phantomjs');
|
if (!grunt.file.exists(dest)){
|
||||||
|
|
||||||
|
var m=grunt.file.read(confDir+"location.js")
|
||||||
|
var src=/= \"([^\"]*)\"/.exec(m)[1];
|
||||||
|
|
||||||
|
if (!grunt.file.isPathAbsolute(src)) {
|
||||||
|
src = confDir+src;
|
||||||
|
}
|
||||||
|
|
||||||
|
var exec = require('child_process').execFileSync;
|
||||||
|
|
||||||
|
try {
|
||||||
|
var ph=exec(src,['-v'], { stdio: 'ignore' });
|
||||||
|
grunt.verbose.writeln('Using '+ src);
|
||||||
|
grunt.file.copy(src, dest, { encoding: null });
|
||||||
|
} catch (err) {
|
||||||
|
grunt.verbose.writeln(err);
|
||||||
|
grunt.fail.warn('No working Phantomjs binary available')
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
grunt.log.writeln('Phantomjs already imported from node');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user