xplicitly hide supposed to be hidden files. Closes #605

This commit is contained in:
Hylke Bons 2012-03-08 03:28:18 +00:00
parent 0a19ab2da7
commit 98695afbf4

View file

@ -841,6 +841,9 @@ namespace SparkleLib.Git {
if (!file.Exists)
return 0;
if (file.Name.Equals (".empty"))
File.SetAttributes (file.FullName, FileAttributes.Hidden);
size += file.Length;
}