From 36c59bf602c094bdc81e1bd1596491dcaec53810 Mon Sep 17 00:00:00 2001 From: Kristian Hellang Date: Fri, 16 May 2014 23:07:23 +0200 Subject: [PATCH] Added exception message to warning when `git clone` fails --- makefile.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.shade b/makefile.shade index 0fecdae265..e37ad6678f 100644 --- a/makefile.shade +++ b/makefile.shade @@ -82,7 +82,7 @@ var repos='${new Dictionary { } 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);