Skip to content

Commit df3fb46

Browse files
committed
set proper path to exe on win
1 parent 6dc027a commit df3fb46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

componentDetection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { unmockedModulePathPatterns } from './jest.config'
1818
dotenv.config();
1919

2020
export default class ComponentDetection {
21-
public static componentDetectionPath = './component-detection';
21+
public static componentDetectionPath = process.platform === "win32" ? './component-detection.exe' : './component-detection';
2222
public static outputPath = './output.json';
2323

2424
// This is the default entry point for this class.

0 commit comments

Comments
 (0)