From 62e48aef345f86565e650ec16615298ce7fa90fe Mon Sep 17 00:00:00 2001 From: Suhas Joshi Date: Tue, 20 Jan 2015 18:22:48 -0800 Subject: [PATCH] Fixing issue that pushes nuget.config to release --- makefile.shade | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile.shade b/makefile.shade index dbf3d2c893..ff83b6e27b 100644 --- a/makefile.shade +++ b/makefile.shade @@ -188,7 +188,8 @@ var buildTarget = "compile" Path.Combine(repo, "NuGet.config"), overwrite: true); GitCommand(repo, "commit -am \"Updating NuGet.config\""); - GitCommand(repo, "push origin master"); + + GitCommand(repo, "push origin master:master -f"); } }