replace nix cat-store with nix store cat

the former was deprecated in favor of the latter
This commit is contained in:
ajs124
2022-06-30 00:24:09 +02:00
parent 44841fc827
commit bab671124d
2 changed files with 3 additions and 3 deletions

View File

@ -537,7 +537,7 @@ sub getStoreUri {
sub readNixFile {
my ($path) = @_;
return grab(cmd => ["nix", "--experimental-features", "nix-command",
"cat-store", "--store", getStoreUri(), "$path"]);
"store", "cat", "--store", getStoreUri(), "$path"]);
}