Signed-off-by: VoR0220 <rj@erisindustries.com>
This commit is contained in:
VoR0220
2017-01-11 12:03:54 -06:00
parent 4542f459f1
commit b6508ca992
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -516,6 +516,7 @@ string CompilerStack::applyRemapping(string const& _path, string const& _context
{
string context = sanitizePath(redir.context);
string prefix = sanitizePath(redir.prefix);
// Skip if current context is closer
if (context.length() < longestContext)
continue;
@@ -531,9 +532,8 @@ string CompilerStack::applyRemapping(string const& _path, string const& _context
longestContext = context.length();
longestPrefix = prefix.length();
bestMatchTarget = redir.target;
bestMatchTarget = sanitizePath(redir.target);
}
string path = bestMatchTarget;
path.append(_path.begin() + longestPrefix, _path.end());
return path;