diff options
author | Soispha <soispha@vhack.eu> | 2024-01-20 16:07:08 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-20 16:07:08 +0100 |
commit | 0ec39f40664344d5561b7e8e1c2797b559a15f25 (patch) | |
tree | ea42ec6d5f1017d81b13a2a25703457d40c2d915 /sys/nixpkgs/pkgs | |
parent | fix(sys/nixpkgs/yt/downloader): Be more lenient with yt-dlp exit codes (diff) | |
download | nixos-config-0ec39f40664344d5561b7e8e1c2797b559a15f25.tar.gz nixos-config-0ec39f40664344d5561b7e8e1c2797b559a15f25.zip |
fix(sys/nixpkgs/yt/constants): Add extension to last selection path
Diffstat (limited to 'sys/nixpkgs/pkgs')
-rw-r--r-- | sys/nixpkgs/pkgs/yt/src/constants.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/yt/src/constants.rs b/sys/nixpkgs/pkgs/yt/src/constants.rs index 96995f08..5250820c 100644 --- a/sys/nixpkgs/pkgs/yt/src/constants.rs +++ b/sys/nixpkgs/pkgs/yt/src/constants.rs @@ -36,7 +36,7 @@ pub fn status_path() -> anyhow::Result<PathBuf> { Ok(out) } -const LAST_SELECT: &str = "ytcc/selected"; +const LAST_SELECT: &str = "ytcc/selected.yts"; pub fn last_select() -> anyhow::Result<PathBuf> { let out: PathBuf = format!( "{}/{}", |