mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-07 03:00:34 -07:00
Fix bash on-liner if statement
This commit is contained in:
parent
291730ff1b
commit
6da0f7a5f1
1 changed files with 4 additions and 4 deletions
8
.github/workflows/ansible-test-plugins.yml
vendored
8
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -406,10 +406,10 @@ jobs:
|
|||
- name: Compute docker_image - Set db_client
|
||||
run: >
|
||||
if [[ ${{ env.db_engine_version_flat }} == 57 ]]; then
|
||||
echo "db_client=my57" >> $GITHUB_ENV
|
||||
else;
|
||||
echo "db_client=$(echo ${{ matrix.connector_name }}" >> $GITHUB_ENV
|
||||
fi;
|
||||
echo "db_client=my57" >> $GITHUB_ENV;
|
||||
else
|
||||
echo "db_client=$(echo ${{ matrix.connector_name }}" >> $GITHUB_ENV;
|
||||
fi
|
||||
|
||||
- name: Set docker_image
|
||||
run: >
|
||||
|
|
Loading…
Add table
Reference in a new issue