diff options
author | Soispha <soispha@vhack.eu> | 2024-01-21 14:33:38 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-21 14:33:38 +0100 |
commit | 1ccb1246641265f384e51f7a72f0589a1dd28fad (patch) | |
tree | e064b818b9a3e1173cf24a4f7dba05da4530cdea /sys/nixpkgs/pkgs/yt/src/bin | |
parent | feat(sys/nixpkgs/yt): Add support for the 'url' command (diff) | |
download | nixos-config-1ccb1246641265f384e51f7a72f0589a1dd28fad.zip |
fix(sys/nixpkgs/yt): Ensure that the downloader downloads everything
Diffstat (limited to '')
-rw-r--r-- | sys/nixpkgs/pkgs/yt/src/bin/yt/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/yt/src/bin/yt/main.rs b/sys/nixpkgs/pkgs/yt/src/bin/yt/main.rs index f3c16613..37348834 100644 --- a/sys/nixpkgs/pkgs/yt/src/bin/yt/main.rs +++ b/sys/nixpkgs/pkgs/yt/src/bin/yt/main.rs @@ -32,7 +32,7 @@ fn main() -> Result<()> { }; let temp_file = Builder::new() - .prefix("yt_video_select") + .prefix("yt_video_select-") .suffix(".yts") .rand_bytes(6) .tempfile() |