Skip to content

Commit bf9a6cc

Browse files
committed
fix: file not found on Linux
1 parent ee7d9d1 commit bf9a6cc

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)