mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 18:45:38 +01:00
Fix message about install directory not being empty
This commit is contained in:
parent
b5fa7cacb3
commit
83fb6e121c
@ -44,7 +44,7 @@ impl Task for VerifyInstallDirTask {
|
|||||||
.map_err(|x| format!("Failed to read install destination: {:?}", x))?;
|
.map_err(|x| format!("Failed to read install destination: {:?}", x))?;
|
||||||
|
|
||||||
if paths.count() != 0 {
|
if paths.count() != 0 {
|
||||||
return Err("Install destination is not empty.".to_string());
|
return Err(format!("Install destination ({:?}) is not empty.", context.install_path));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user