Added exception message to warning when `git clone` fails
This commit is contained in:
parent
818f647930
commit
36c59bf602
|
|
@ -82,7 +82,7 @@ var repos='${new Dictionary<string,string> {
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
GitConfig("bugtraq.url", "http://github.com/aspnet/" + repo.Key + "/issues/%BUGID%", repo.Key);
|
GitConfig("bugtraq.url", "http://github.com/aspnet/" + repo.Key + "/issues/%BUGID%", repo.Key);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue