Commit a656d01b by Ryan McKinley Committed by Torkel Ödegaard

append windows phantomjs with .exe (#7065)

parent 9b8760ba
...@@ -6,6 +6,10 @@ module.exports = function(config,grunt) { ...@@ -6,6 +6,10 @@ module.exports = function(config,grunt) {
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 (process.platform === "win32") {
dest += ".exe";
}
src = config.phjs src = config.phjs
if (!src){ if (!src){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment