Skip to content

Commit

Permalink
try to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisonB319 committed Dec 3, 2024
1 parent bdf264e commit a5d949a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .pipelines/.vsts-vhd-builder-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1310,17 +1310,24 @@ stages:
# Find and copy VHD publishing info files
echo "Checking for vhd-publishing-info.json files"
echo "way zero"
find /mnt/vss/_work/1/downloaded-artifacts -type f -name vhd-publishing-info.json
echo "way zero.5"
find "$PIPELINE_WORKSPACE/downloaded-artifacts" -type f -name vhd-publishing-info.json
echo "way one"
find /mnt/vss/_work/1/downloaded-artifacts -type f -name vhd-publishing-info.json \! -path '*publishing-info*'
echo "way two"
find /mnt/vss/_work/1/downloaded-artifacts -type f -name vhd-publishing-info.json '! -path *publishing-info*'
find /mnt/vss/_work/1/downloaded-artifacts -type f -name vhd-publishing-info.json -not -path '*publishing-info*'
echo "way three"
find "$PIPELINE_WORKSPACE/downloaded-artifacts" -type f -name "vhd-publishing-info.json" \! -path "*publishing-info*"
echo "way four"
find "$PIPELINE_WORKSPACE/downloaded-artifacts" -type f -name "vhd-publishing-info.json" '! -path "*publishing-info*"
find "$PIPELINE_WORKSPACE/downloaded-artifacts" -type f -name "vhd-publishing-info.json" '! -path "*publishing-info*"'
echo "way five"
find /mnt/vss/_work/1/downloaded-artifacts -type f -name vhd-publishing-info.json -not -path '*publishing-info*'
Expand Down

0 comments on commit a5d949a

Please sign in to comment.