Skip to content

Commit

Permalink
Make .editorconfig symlink relative (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
tizmagik authored and delambo committed Aug 18, 2016
1 parent 2a359a4 commit 56c8207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/actions/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = (program) => {
// Creates a symbolic link from our local
// .editorconfig to the user's base directory.
const createEditorconfigLink = () => {
const editorPath = path.join(userRootPath, 'node_modules/kyt/.editorconfig');
const editorPath = './node_modules/kyt/.editorconfig';
const configPath = path.join(userRootPath, '.editorconfig');
if (shell.ln('-s', editorPath, configPath).code === 0) {
logger.task('Linked .editorconfig');
Expand Down

0 comments on commit 56c8207

Please sign in to comment.