This commit is contained in:
⛧-440729 [sophie] 2025-06-28 00:05:19 +02:00
parent dc9a2450d6
commit fb81009336
No known key found for this signature in database
GPG key ID: 8566000000440729

View file

@ -143,7 +143,7 @@ async fn check_path_validity(store_path: &str) -> anyhow::Result<bool> {
async fn copy_path(store_path: &str, copy_to: &str) -> anyhow::Result<()> {
let mut cmd = WrappedChild::new(
Command::new("nix").args(&["copy", "--to", copy_to]),
Command::new("nix").args(&["copy", "--to", copy_to, store_path]),
Some(format!("nix copy {}", store_path)),
)?;
loop {