Skip to content

Commit 5703f91

Browse files
committedJul 3, 2022
fixed source path file join
1 parent 727c6e6 commit 5703f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/modules/scheduler/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export default class Scheduler {
192192
private scanSourceFiles(): Promise<void> {
193193
return new Promise((resolve, reject) => {
194194
let sourcesPath = Config.getOption(ConfigOptions.SOURCES_PATH);
195-
glob(`${path.resolve(pathCwd, sourcesPath)}/**`, {}, (error: any, files: string[]) => {
195+
glob(`${path.join(pathCwd, sourcesPath)}/**`, {}, (error: any, files: string[]) => {
196196
if (error) {
197197
Events.emit('scheduler.path.error', error);
198198
return reject(error);

0 commit comments

Comments
 (0)
Please sign in to comment.