Skip to content

Commit d2f4682

Browse files
romandarianagastmaier
authored andcommitted
azure-pipelines-rpi: Use explicit regex
The intention of the commit 3580444 was to also upload the .dtb files present in overlays/ folder. By using .dtb* regex, unnecessary files found their way into the artifacts. Use explicit regex in order to upload only files ending in .dtb or .dtbo. Signed-off-by: Alisa-Dariana Roman <[email protected]> (cherry picked from commit 0e6471f)
1 parent 0619362 commit d2f4682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-pipelines-rpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ stages:
5656
- task: CopyFiles@2
5757
inputs:
5858
sourceFolder: '$(Agent.BuildDirectory)/s/arch/$(ARCH)/boot/dts'
59-
contents: '$(Agent.BuildDirectory)/s/arch/$(ARCH)/boot/dts/overlays/?(*.dtb*)'
59+
contents: '$(Agent.BuildDirectory)/s/arch/$(ARCH)/boot/dts/overlays/?(*.dtb|*.dtbo)'
6060
targetFolder: '$(Build.ArtifactStagingDirectory)'
6161
- task: CopyFiles@2
6262
inputs:

0 commit comments

Comments
 (0)