Browse Source

mfm_dup.cpp

mfm
Antonio SJ Musumeci 2 months ago
parent
commit
accf56044f
  1. 6
      src/mfm_dup.cpp

6
src/mfm_dup.cpp

@ -49,6 +49,12 @@ mfm::dup(const Opts::Dup &opts_)
if(dstpath == srcpath) if(dstpath == srcpath)
continue; continue;
fs::path src_base_path;
fs::path dst_base_path;
src_base_path = srcpath / relpath.parent_path();
dst_base_path = dstpath / relpath.parent_path();
fmt::println("copy {} to {} : {}", fmt::println("copy {} to {} : {}",
srcpath.string(), srcpath.string(),
dstpath.string(), dstpath.string(),

Loading…
Cancel
Save