1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-13 22:04:09 +02:00

Fixed issue copying nested directories

This commit is contained in:
Brian Fiete 2020-06-15 12:50:47 -07:00
parent be0c03241e
commit b811f5daf8

View file

@ -1167,6 +1167,7 @@ namespace IDE
if (entry.IsDirectory) if (entry.IsDirectory)
{ {
srcFilePath.AppendF("{}*", Path.DirectorySeparatorChar);
Do(srcFilePath, destFilePath); Do(srcFilePath, destFilePath);
continue; continue;
} }