ssg: StaticSiteClient: fix product name in error messages
This commit is contained in:
parent
299c6081d5
commit
7c061ba390
|
@ -205,7 +205,7 @@ namespace OpenLiveWriter.BlogClient.Clients
|
||||||
throw new BlogClientException(
|
throw new BlogClientException(
|
||||||
StringId.SSGBuildErrorTitle,
|
StringId.SSGBuildErrorTitle,
|
||||||
StringId.SSGBuildErrorText,
|
StringId.SSGBuildErrorText,
|
||||||
StringId.ProductNameVersioned,
|
Res.Get(StringId.ProductNameVersioned),
|
||||||
proc.ExitCode.ToString(),
|
proc.ExitCode.ToString(),
|
||||||
proc.StandardOutput.ReadToEnd(),
|
proc.StandardOutput.ReadToEnd(),
|
||||||
proc.StandardError.ReadToEnd()
|
proc.StandardError.ReadToEnd()
|
||||||
|
@ -224,7 +224,7 @@ namespace OpenLiveWriter.BlogClient.Clients
|
||||||
throw new BlogClientException(
|
throw new BlogClientException(
|
||||||
StringId.SSGPublishErrorTitle,
|
StringId.SSGPublishErrorTitle,
|
||||||
StringId.SSGPublishErrorText,
|
StringId.SSGPublishErrorText,
|
||||||
StringId.ProductNameVersioned,
|
Res.Get(StringId.ProductNameVersioned),
|
||||||
proc.ExitCode.ToString(),
|
proc.ExitCode.ToString(),
|
||||||
proc.StandardOutput.ReadToEnd(),
|
proc.StandardOutput.ReadToEnd(),
|
||||||
proc.StandardError.ReadToEnd()
|
proc.StandardError.ReadToEnd()
|
||||||
|
|
Loading…
Reference in New Issue