Skip to content

Commit

Permalink
Merge pull request #148 from m-akinc/master
Browse files Browse the repository at this point in the history
Test file existence of the Projects file rather than the folder
  • Loading branch information
KirillOsenkov authored Jul 9, 2020
2 parents 9e01a33 + b465dae commit 5fdc38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SourceIndexServer/Models/Serialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static IEnumerable<AssemblyInfo> ReadAssemblies(string rootPath)
public static IEnumerable<string> ReadProjects(string folderPath)
{
var projectInfoFile = Path.Combine(folderPath, Constants.MasterProjectMap + ".txt");
if (!File.Exists(folderPath))
if (!File.Exists(projectInfoFile))
{
return Array.Empty<string>();
}
Expand Down

0 comments on commit 5fdc38c

Please sign in to comment.