[linux] add executable permission
This commit is contained in:
parent
cd8d5a6171
commit
aaffde81ac
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue