Skip to content

Commit

Permalink
fix(build): fix path creation to avoid always using default settings
Browse files Browse the repository at this point in the history
The config path was not detected anymore in 2.9.1 leading into always using the defaults and, for example, autoinstall via semantic.json was not working anymore
  • Loading branch information
lubber-de authored Jan 22, 2023
1 parent 326e6cc commit c9cbd9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/config/project/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ module.exports = {
}
;
// start walk from current directory if none specified
directory = directory || path.join((__dirname, path.sep));
directory = directory || path.join(__dirname, path.sep);

return walk(directory);
},
Expand Down

0 comments on commit c9cbd9b

Please sign in to comment.