|
@@ -297,6 +297,7 @@ func GetDirectorySizeNative(filename string) (int64, error) {
|
|
|
//We need to trim off the spaces
|
|
|
tmp := string(out)
|
|
|
tmp = strings.TrimSpace(tmp)
|
|
|
+ tmp = strings.ReplaceAll(tmp, "\t", " ")
|
|
|
for strings.Contains(tmp, " ") {
|
|
|
tmp = strings.ReplaceAll(tmp, " ", " ")
|
|
|
}
|