Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Throw better exception when refs dir is missing
  • Loading branch information
chuseman committed Aug 22, 2019
commit 77670d15edccc321e108a04c7f220c76c1eeadd4
2 changes: 1 addition & 1 deletion src/GitVersionCore/GitVersionCacheKeyFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static List<string> CalculateDirectoryContents(string root)

if (!Directory.Exists(root))
{
throw new ArgumentException();
throw new ArgumentException($"Root directory does not exist: {root}");
}

dirs.Push(root);
Expand Down