Skip to content

Commit 247eb46

Browse files
committed
Fixed path.
1 parent 655cb14 commit 247eb46

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,8 +1171,8 @@ F.console = function() {
11711171
// global.THREAD && print('Thread : ' + global.THREAD);
11721172
print('====================================================');
11731173
F.config.$root && print('Root : ' + F.config.$root);
1174-
print('Directory : ' + path.join(process.cwd(), F.Path.sep));
1175-
print('node_modules : ' + path.join(nodemodules, F.Path.sep));
1174+
print('Directory : ' + F.Path.join(process.cwd(), F.Path.sep));
1175+
print('node_modules : ' + F.Path.join(nodemodules, F.Path.sep));
11761176
print('====================================================\n');
11771177

11781178
if (!F.isWorker && F.server) {

0 commit comments

Comments
 (0)