You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(#260) Correcing AppVeyor Support for Pull Requests
- As per discussion with @nulltoken, implemented a fix for AppVeyor where if the commit sha is not present of any detected local branches, check out a new branch using the sha as the pointer
Copy file name to clipboardExpand all lines: GitVersionCore/BuildServers/AppVeyor.cs
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,10 @@ public override void PerformPreProcessingSteps(string gitDirectory)
22
22
{
23
23
if(string.IsNullOrEmpty(gitDirectory))
24
24
{
25
-
thrownewWarningException("Failed to find .git directory on agent. Please make sure agent checkout mode is enabled for you VCS roots - http://confluence.jetbrains.com/display/TCD8/VCS+Checkout+Mode");
25
+
thrownewWarningException("Failed to find .git directory on agent.");
0 commit comments