revert small change

This commit is contained in:
Alek Westover
2023-06-12 13:59:04 -04:00
parent a5e8e38bc5
commit 6990102bb2

View File

@@ -213,7 +213,6 @@ impl RemoteStorage for LocalFs {
async fn download(&self, from: &RemotePath) -> Result<Download, DownloadError> {
let target_path = from.with_base(&self.storage_root);
println!("{:?}",target_path);
if file_exists(&target_path).map_err(DownloadError::BadInput)? {
let source = io::BufReader::new(
fs::OpenOptions::new()