diff options
Diffstat (limited to 'sys/nixpkgs/pkgs/ytc/src/downloader.rs')
-rw-r--r-- | sys/nixpkgs/pkgs/ytc/src/downloader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/ytc/src/downloader.rs b/sys/nixpkgs/pkgs/ytc/src/downloader.rs index 9509278c..3b0c6670 100644 --- a/sys/nixpkgs/pkgs/ytc/src/downloader.rs +++ b/sys/nixpkgs/pkgs/ytc/src/downloader.rs @@ -130,7 +130,7 @@ fn download_url(url: &str) -> Result<PathBuf> { "after_move:filepath", ]); yt_dlp.arg(output_file.path().as_os_str()); - let status = yt_dlp.status().context("Failed to run yt_dlp")?; + let status = yt_dlp.status().context("Failed to run yt-dlp")?; if let Some(code) = status.code() { if code != 0 { bail!("yt_dlp execution failed with error: '{}'", status); |