We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 345757a commit c198ec3Copy full SHA for c198ec3
os/src/FileOps.scala
@@ -203,7 +203,7 @@ object copy {
203
def copyOne(p: Path): Unit = {
204
val target = to / p.relativeTo(from)
205
if (mergeFolders && isDir(p, followLinks) && !exists(target,followLinks)) {
206
- // nothing to do
+ os.makeDir(target)
207
} else if (mergeFolders && isDir(p, followLinks) && isDir(target, followLinks)) {
208
// nothing to do
209
} else {
0 commit comments