From 74298ed140e41f418f2c80b0f09db9347f3b3ade Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Sun, 3 Nov 2024 16:37:52 +0100 Subject: [PATCH] Unquote --- .github/actions/vcpkg_update_report/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/vcpkg_update_report/action.yml b/.github/actions/vcpkg_update_report/action.yml index 1a848946ce9..a53ab32d76e 100644 --- a/.github/actions/vcpkg_update_report/action.yml +++ b/.github/actions/vcpkg_update_report/action.yml @@ -30,14 +30,14 @@ runs: - name: Run vcpkg install (HEAD) shell: bash run: | - vcpkg install --dry-run --triplet ${{ inputs.triplet }} --x-manifest-root=${{ inputs.vcpkg-manifest-dir }} $(awk -v FS=',' '{for(i=1; i<=NF; i++) printf "--x-feature=\"%s\" ", $i}' <<< "${{ inputs.features }}") --allow-unsupported > /tmp/vcpkg-head-output.txt + vcpkg install --dry-run --triplet ${{ inputs.triplet }} --x-manifest-root=${{ inputs.vcpkg-manifest-dir }} $(awk -v FS=',' '{for(i=1; i<=NF; i++) printf "--x-feature=%s ", $i}' <<< "${{ inputs.features }}") --allow-unsupported > /tmp/vcpkg-head-output.txt # Run vcpkg install --dry-run on the base ref - name: Run vcpkg install (BASE) shell: bash run: | git worktree add .base-ref ${{ github.event.pull_request.base.sha }} - vcpkg install --dry-run --triplet ${{ inputs.triplet }} --x-manifest-root=.base-ref/${{ inputs.vcpkg-manifest-dir }} $(awk -v FS=',' '{for(i=1; i<=NF; i++) printf "--x-feature=\"%s\" ", $i}' <<< "${{ inputs.features }}") --allow-unsupported > /tmp/vcpkg-base-output.txt + vcpkg install --dry-run --triplet ${{ inputs.triplet }} --x-manifest-root=.base-ref/${{ inputs.vcpkg-manifest-dir }} $(awk -v FS=',' '{for(i=1; i<=NF; i++) printf "--x-feature=%s ", $i}' <<< "${{ inputs.features }}") --allow-unsupported > /tmp/vcpkg-base-output.txt # Compare the outputs and generate a report