Skip to content

Commit

Permalink
Trying to fix the MacOS builds.
Browse files Browse the repository at this point in the history
MacOS doesn't like neither '${blah@L}' nor '${blah,,}' for converting 'blah' to lowercase.
  • Loading branch information
rturrado committed Sep 26, 2023
1 parent 3fc0402 commit 147c322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
conan profile detect
build_type=${{ matrix.build_type }}
lowercase_build_type=${build_type,,}
lowercase_build_type=$(echo ${build_type} | tr '[:upper:]' '[:lower:]')
conan build . -pr=conan/profiles/tests-${lowercase_build_type}-compat -b missing
shell: bash
- name: Test
Expand Down

0 comments on commit 147c322

Please sign in to comment.