fix path to wdiff binary

This commit is contained in:
Adam Brown 2015-05-26 11:29:41 -04:00
parent b54dcf0c2c
commit 573b6b32e2

View File

@ -43,7 +43,7 @@ module.exports = function(a, b, asMarkdown, callback) {
if (err)
return callback(err);
var cmd = "wdiff " + filea.path + " " +fileb.path;
var cmd = "./bin/wdiff " + filea.path + " " +fileb.path;
exec(cmd, function(err, stdout) {
if (err && err.code!=1 && err.code!=0) {