Skip to content

Commit

Permalink
Fix test script
Browse files Browse the repository at this point in the history
  • Loading branch information
Hardik Gajjar committed Sep 2, 2021
1 parent f656ae1 commit 5f6e23a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ function test()
export MY127WS_ENV=pipeline
fi

if [[ "$harness" = ^(akeneo4)$ ]]; then
if [[ "$harness" =~ ^(akeneo4)$ ]]; then
akeneo_version=4
harness="akeneo"
elif [[ "$harness" = ^(akeneo5)$ ]]; then
elif [[ "$harness" =~ ^(akeneo5)$ ]]; then
akeneo_version=5
harness="akeneo"
fi
Expand All @@ -38,7 +38,7 @@ function test()
elif [[ "$sync" == "mutagen" ]]; then
setup_dynamic_mutagen
fi
if [[ "$harness" = ^(akeneo)$ ]]; then
if [[ "$harness" =~ ^(akeneo)$ ]]; then
setup_akeneo_version "$akeneo_version"
fi
if ! [[ "$harness" =~ ^(magento1)$ ]]; then
Expand Down

0 comments on commit 5f6e23a

Please sign in to comment.