Skip to content

Commit

Permalink
Fix Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
RehanSaeed committed May 24, 2022
1 parent 345d997 commit 1937015
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ stages:
template: "NuGet"
pool:
vmImage: $(vmImageName)
timeoutInMinutes: 20
timeoutInMinutes: 30
steps:
- checkout: self
lfs: true
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void StartProcess(string processName, ProcessArgumentBuilder builder)
{
Arguments = builder
});
if (exitCode != 0 && !AzurePipelines.IsRunningOnAzurePipelines)
if (exitCode != 0)
{
throw new Exception($"'{command}' failed with exit code {exitCode}.");
}
Expand Down

0 comments on commit 1937015

Please sign in to comment.