Skip to content

Commit c07c619

Browse files
committed
fix: file not found on Linux
1 parent 9ef6930 commit c07c619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/repositories/ccextractor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class CCExtractor {
1717
SettingsRepository settingsRepository = SettingsRepository();
1818
SettingsModel settings = SettingsModel();
1919
String get ccextractor {
20-
return Platform.isWindows ? './ccextractorwinfull.exe' : 'ccextractor';
20+
return Platform.isWindows ? './ccextractorwinfull.exe' : './ccextractor';
2121
}
2222

2323
Future<int> extractFile(

0 commit comments

Comments
 (0)