Skip to content

Commit

Permalink
Fixes #508, make sure _buildPaths are normalized for later comparisions
Browse files Browse the repository at this point in the history
  • Loading branch information
jrburke committed Aug 13, 2013
1 parent 3775b67 commit eb38848
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/jslib/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ define(function (require) {
return function () {
//Save off buildPath to module index in a hash for quicker
//lookup later.
config._buildPathToModuleIndex[module._buildPath] = i;
config._buildPathToModuleIndex[file.normalize(module._buildPath)] = i;

//Call require to calculate dependencies.
return build.traceDependencies(module, config)
Expand Down

0 comments on commit eb38848

Please sign in to comment.