Skip to content
Snippets Groups Projects
Commit a74a0e2b authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Fix bug where dir size was reported in Bytes instead of Megabytes.

Refers to #1
parent 5353ea07
No related branches found
No related tags found
No related merge requests found
......@@ -964,7 +964,7 @@ namespace AutoTx
continue;
long size = -1;
try {
size = GetDirectorySize(subdir.FullName);
size = GetDirectorySize(subdir.FullName) / MegaBytes;
}
catch (Exception ex) {
writeLog("ERROR getting directory size of " + subdir.FullName +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment