Skip to content

Commit e12acc1

Browse files
committed
don't throw exception on STDERR
1 parent 2a2dcdd commit e12acc1

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

GitApi/GitBash.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ public static string Run(string args, string workingDirectory)
5454
if (!string.IsNullOrEmpty(error))
5555
{
5656
//Debug.WriteLine("STDERR: " + error);
57-
throw new Exception(error);
57+
//throw new Exception(error);
58+
59+
output += Environment.NewLine + error;
5860
}
5961
return output;
6062
}

source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Identifier Id="C4128D99-2000-41D1-A6C3-704E6C1A3DE2">
44
<Name>Git Source Control Provider</Name>
55
<Author>[email protected]</Author>
6-
<Version>0.9.0</Version>
6+
<Version>0.9.1</Version>
77
<Description xml:space="preserve">Git Source Control Provider is a plug-in that integrates git with Visual Studio.</Description>
88
<Locale>1033</Locale>
99
<License>License.txt</License>
@@ -30,7 +30,7 @@
3030
</References>
3131
<Content>
3232
<VsPackage>|%CurrentProject%;PkgdefProjectOutputGroup|</VsPackage>
33-
<MefComponent>DiffClassifier.dll</MefComponent>
33+
<MefComponent>DiffClassifier.dll</MefComponent>
3434
<CustomExtension Type="Exe">GitUI.exe</CustomExtension>
3535
</Content>
3636
</Vsix>

0 commit comments

Comments
 (0)