[linux] add executable permission

This commit is contained in:
jscampucci 2024-07-09 12:50:49 +02:00
parent cd8d5a6171
commit aaffde81ac
1 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,10 @@ class DLServices {
});
ytDlpPath = tempFile.path;
if (Platform.isLinux || Platform.isMacOS) {
await Process.run('chmod', ['+x', ytDlpPath]);
}
}
Future<Stream> downloadFile(Video video) async {