Skip to content

Commit

Permalink
Fix #34
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Sampson committed Dec 29, 2016
1 parent b36b0df commit 9e9c50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SteamCleaner/Analyzer/Analyzers/BattlenetAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public IEnumerable<string> FindPaths()
{
line = line.Remove(0, 1);
}
if (Directory.Exists(line))
if (Directory.Exists(line) && !line.Contains("Support"))
{
paths.Add(line);
}
Expand Down

0 comments on commit 9e9c50d

Please sign in to comment.