Skip to content

Commit

Permalink
Fix temp file detection
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdenCullen committed Nov 2, 2020
1 parent 587d6c3 commit 4bc6a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/doveralls/sourcefiles.d
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ JSONValue[] getSourceFiles(string path)
{
if (lstPath.baseName.startsWith(".."))
continue;
else if (lstPath.isAbsolute)
else if (lstPath.startsWith("/var") || lstPath.startsWith("/tmp"))
continue;

string relPath;
Expand Down

0 comments on commit 4bc6a39

Please # to comment.