Skip to content

Commit

Permalink
don't throw exception on STDERR
Browse files Browse the repository at this point in the history
  • Loading branch information
yysun committed Jan 25, 2012
1 parent 2a2dcdd commit e12acc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion GitApi/GitBash.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ public static string Run(string args, string workingDirectory)
if (!string.IsNullOrEmpty(error))
{
//Debug.WriteLine("STDERR: " + error);
throw new Exception(error);
//throw new Exception(error);

output += Environment.NewLine + error;
}
return output;
}
Expand Down
4 changes: 2 additions & 2 deletions source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="C4128D99-2000-41D1-A6C3-704E6C1A3DE2">
<Name>Git Source Control Provider</Name>
<Author>[email protected]</Author>
<Version>0.9.0</Version>
<Version>0.9.1</Version>
<Description xml:space="preserve">Git Source Control Provider is a plug-in that integrates git with Visual Studio.</Description>
<Locale>1033</Locale>
<License>License.txt</License>
Expand All @@ -30,7 +30,7 @@
</References>
<Content>
<VsPackage>|%CurrentProject%;PkgdefProjectOutputGroup|</VsPackage>
<MefComponent>DiffClassifier.dll</MefComponent>
<MefComponent>DiffClassifier.dll</MefComponent>
<CustomExtension Type="Exe">GitUI.exe</CustomExtension>
</Content>
</Vsix>

0 comments on commit e12acc1

Please sign in to comment.