Skip to content

Commit 2ebc592

Browse files
authored
IBX-10967: Excluded OSS from editions connector-anthropic is installed on (#128)
1 parent 66c5f54 commit 2ebc592

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bin/stable/prepare_project_edition.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ elif [[ $PROJECT_VERSION == *"v4.6"* ]]; then
6868
fi
6969
else
7070
echo "> Installing dependencies for v5"
71-
docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION ibexa/docker:$PROJECT_VERSION ibexa/connector-anthropic:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi
71+
docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION ibexa/docker:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi
72+
if [[ "$PROJECT_EDITION" != "oss" ]]; then
73+
docker exec install_dependencies composer require ibexa/connector-anthropic:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi
74+
fi
7275
fi
7376

7477
# Enable FriendsOfBehat SymfonyExtension in the Behat env

0 commit comments

Comments
 (0)