Skip to content

Commit c9cbd9b

Browse files
authored
fix(build): fix path creation to avoid always using default settings
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
1 parent 326e6cc commit c9cbd9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/config/project/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ module.exports = {
127127
}
128128
;
129129
// start walk from current directory if none specified
130-
directory = directory || path.join((__dirname, path.sep));
130+
directory = directory || path.join(__dirname, path.sep);
131131

132132
return walk(directory);
133133
},

0 commit comments

Comments
 (0)