Skip to content

Commit 1937015

Browse files
committed
Fix Azure Pipelines
1 parent 345d997 commit 1937015

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ stages:
114114
template: "NuGet"
115115
pool:
116116
vmImage: $(vmImageName)
117-
timeoutInMinutes: 20
117+
timeoutInMinutes: 30
118118
steps:
119119
- checkout: self
120120
lfs: true

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public void StartProcess(string processName, ProcessArgumentBuilder builder)
191191
{
192192
Arguments = builder
193193
});
194-
if (exitCode != 0 && !AzurePipelines.IsRunningOnAzurePipelines)
194+
if (exitCode != 0)
195195
{
196196
throw new Exception($"'{command}' failed with exit code {exitCode}.");
197197
}

0 commit comments

Comments
 (0)