Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bin/5.0.x-dev/prepare_project_edition.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ if [[ "$PROJECT_EDITION" != "oss" ]]; then
docker exec install_dependencies composer require ibexa/connector-gemini:$PROJECT_VERSION --no-scripts --ansi --no-update
docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --no-scripts --ansi --no-update
docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --no-scripts --ansi --no-update

if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then
docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update
fi

fi
if [[ "$PROJECT_EDITION" == "commerce" ]]; then
docker exec install_dependencies composer require ibexa/shopping-list:$PROJECT_VERSION --no-scripts --ansi --no-update
Expand Down
5 changes: 5 additions & 0 deletions bin/stable/prepare_project_edition.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ else
docker exec install_dependencies composer require ibexa/connector-gemini:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi
docker exec install_dependencies composer require ibexa/integrated-help:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi
docker exec install_dependencies composer require ibexa/connector-raptor:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi

if [[ "${INSTALL_CONNECTOR_QUABLE:-false}" == "true" ]]; then
docker exec install_dependencies composer require ibexa/connector-quable:$PROJECT_VERSION --no-scripts --ansi --no-update
fi

fi
if [[ "$PROJECT_EDITION" == "commerce" ]]; then
docker exec install_dependencies composer require ibexa/shopping-list:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi
Expand Down
Loading