Setting exit code in exception message.
This commit is contained in:
parent
df6f59a1d1
commit
0ab04fd319
|
|
@ -94,7 +94,7 @@ namespace Microsoft.AspNet.Server.Testing
|
||||||
|
|
||||||
if (hostProcess.ExitCode != 0)
|
if (hostProcess.ExitCode != 0)
|
||||||
{
|
{
|
||||||
throw new Exception("dnu publish exited with exit code : {0}");
|
throw new Exception(string.Format("dnu publish exited with exit code : {0}", hostProcess.ExitCode));
|
||||||
}
|
}
|
||||||
|
|
||||||
DeploymentParameters.ApplicationPath =
|
DeploymentParameters.ApplicationPath =
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue