Skip to content
This repository has been archived by the owner on Nov 4, 2022. It is now read-only.

Commit

Permalink
Fix Node v6.x symlink resolve behaviour to make plugins work
Browse files Browse the repository at this point in the history
  • Loading branch information
roadhump committed May 12, 2016
1 parent c67ab69 commit da1678e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ exports.getPlugin = function (plugin) {
};

exports.getPluginPath = function (plugin) {
return which.sync(plugin);
return fs.realpathSync(which.sync(plugin));
};

exports.getPluginBasename = function (plugin) {
Expand Down

0 comments on commit da1678e

Please sign in to comment.