Skip to content

Commit 6445880

Browse files
Merge pull request #12 from EclipsedButter/patch-1
Ignore .DS_Store files
1 parent 2dae539 commit 6445880

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Tasks/TestMacOSTask.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ private void CheckDir(BuildContext context, string dir, List<string> libSufix)
4141

4242
foreach (var filePath in Directory.GetFiles(dir))
4343
{
44+
if (filePath.Contains(".DS_Store")) continue;
4445
context.Information($"Checking: {filePath}");
4546
context.StartProcess(
4647
"dyld_info",
@@ -141,4 +142,4 @@ out IEnumerable<string> processOutput
141142
context.Information("");
142143
}
143144
}
144-
}
145+
}

0 commit comments

Comments
 (0)