Skip to content

Commit d1d7fbe

Browse files
committed
Fix the paths
1 parent 16dad24 commit d1d7fbe

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

eng/pipelines/dotnet-buildtools-prereqs-eng.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ stages:
3737
linuxAmdBuildJobTimeout: 360
3838
linuxArmBuildJobTimeout: 300
3939
customBuildInitSteps:
40-
- powershell: ./eng/Stage-EngCommon.ps1
40+
- powershell: $(Build.SourcesDirectory)/eng/Stage-EngCommon.ps1
4141
displayName: Copy eng/common to build dirs
4242
condition: eq(variables['Agent.OS'], 'Linux')

eng/pipelines/dotnet-buildtools-prereqs-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ stages:
3131
demands: ImageOverride -equals build.ubuntu.2204.amd64.open
3232
os: linux
3333
customBuildInitSteps:
34-
- powershell: ./eng/Stage-EngCommon.ps1
34+
- powershell: $(Build.SourcesDirectory)/eng/Stage-EngCommon.ps1
3535
displayName: Copy eng/common to build dirs
3636
condition: eq(variables['Agent.OS'], 'Linux')

eng/pipelines/stages/dotnet-buildtools-prereqs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ stages:
2525
image: build.ubuntu.2204.amd64
2626
os: linux
2727
customBuildInitSteps:
28-
- powershell: ./eng/Stage-EngCommon.ps1
28+
- powershell: $(Build.SourcesDirectory)/eng/Stage-EngCommon.ps1
2929
displayName: Copy eng/common to build dirs
3030
condition: eq(variables['Agent.OS'], 'Linux')
3131
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:

0 commit comments

Comments
 (0)