Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Fixes #36 - '/' to path.sep
Browse files Browse the repository at this point in the history
  • Loading branch information
buzinas committed Nov 14, 2015
1 parent 4dcdcb1 commit 9a6a18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/init.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports =
configuration = Linter.findConfiguration(undefined, filePath)

if (rulesDirectory && textEditor.project && textEditor.project.getPaths().length)
directory = textEditor.project.getPaths()[0] + '/' + rulesDirectory
directory = textEditor.project.getPaths()[0] + path.sep + rulesDirectory
else
directory = undefined

Expand Down

0 comments on commit 9a6a18f

Please sign in to comment.