Added exception message to warning when `git clone` fails

This commit is contained in:
Kristian Hellang 2014-05-16 23:07:23 +02:00
parent 818f647930
commit 36c59bf602
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);