Merge pull request #65 from khellang/patch-1

Added exception message to warning when `git clone` fails
This commit is contained in:
David Fowler 2014-06-15 06:52:57 -07:00
commit 60c1d007fa
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ var repos='${new Dictionary<string,string> {
}
catch (Exception ex)
{
Log.Warn(string.Format("Unable to clone repository at '{0}'.", repo.Value));
Log.Warn(string.Format("Unable to clone repository at '{0}': {1}", repo.Value, ex.Message));
continue;
}
GitConfig("bugtraq.url", "http://github.com/aspnet/" + repo.Key + "/issues/%BUGID%", repo.Key);