We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a55895a commit 8d6d05cCopy full SHA for 8d6d05c
1 file changed
bin/5.0.x-dev/prepare_project_edition.sh
@@ -113,6 +113,11 @@ docker exec install_dependencies composer recipes:install ${DEPENDENCY_PACKAGE_N
113
# Install Behat and Docker packages
114
docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION ibexa/docker:$PROJECT_VERSION --no-scripts --ansi --no-update
115
116
+# Install opt-in packages
117
+if [[ "$PROJECT_EDITION" != "oss" ]]; then
118
+ docker exec install_dependencies composer require ibexa/connector-anthropic:$PROJECT_VERSION --no-scripts --ansi --no-update
119
+fi
120
+
121
# Add other dependencies if required
122
if [ -f dependencies.json ]; then
123
COUNT=$(cat dependencies.json | jq '.packages | length' )
0 commit comments