diff --git a/bauh/view/core/downloader.py b/bauh/view/core/downloader.py index 1e9da8a7..97d83f23 100644 --- a/bauh/view/core/downloader.py +++ b/bauh/view/core/downloader.py @@ -52,7 +52,7 @@ class AdaptableFileDownloader(FileDownloader): cmd = ['wget', url] if output_path: - cmd.append('-o') + cmd.append('-O') cmd.append(output_path) return SystemProcess(new_subprocess(cmd, cwd=cwd))