Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #196 from Liryna/develop
Browse files Browse the repository at this point in the history
Display pdbPath in case of no source files found error.
  • Loading branch information
GeertvanHorrik authored Mar 20, 2018
2 parents dc6d4da + 8c47e3b commit 2946ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GitLink/Linker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static class Linker
_sourceFilesList = GetSourceFilesFromPdb(pdbPath, !options.SkipVerify);
if (!_sourceFilesList.Any())
{
Log.Error("No source files were found in the PDB. If you're PDB is a native one you should use -a option.");
Log.Error($"No source files were found in the PDB: {pdbPath}. If you're PDB is a native one you should use -a option.");
return false;
}
}
Expand Down

0 comments on commit 2946ea5

Please sign in to comment.