Skip to content

Commit

Permalink
Fixes root output path collision detection on Windows, by @sintaxi
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethormandy committed Sep 10, 2014
1 parent 6b1c64d commit b335815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ var willCollide = exports.willCollide = function(projectPath, outputPath){
/**
* for @kennethormandy ;)
*/
if (outputPath == "/") result = true
if (outputPath == path.sep) result = true

return result
}
Expand Down

0 comments on commit b335815

Please sign in to comment.