Skip to content

Commit

Permalink
Merge pull request davidrg#424 from jmalak/fix-mistake
Browse files Browse the repository at this point in the history
correct copy and paste mistake in bash expression
  • Loading branch information
davidrg authored Nov 28, 2024
2 parents 14f379f + 5a1d0eb commit a039815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
- uses: actions/checkout@v4
- name: Select env configuration
run: |
if [ matrix.arch = 'x64_arm' || matrix.arch = 'x64_arm64' ]; then
if [[ "${{ matrix.arch }}" = "x64_arm" || "${{ matrix.arch }}" = "x64_arm64" ]]; then
echo "CK_OPENSSL_VERSION=${{ env.OPENSSL_ARM_VERSION }}" >> "$GITHUB_ENV"
echo "CK_K4W_PATH=." >> "$GITHUB_ENV"
else
Expand Down

0 comments on commit a039815

Please sign in to comment.