Skip to content
Merged
Changes from all 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
6 changes: 3 additions & 3 deletions build-scripts/bootstrap-tarballs
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ fi
if test -f "$BASEDIR/mission-portal/composer.json"; then
cd $BASEDIR/mission-portal
# install PHP dependencies from composer
php /usr/bin/composer.phar install --no-dev
php /usr/bin/composer install --no-dev
fi
)

(
if test -f "$BASEDIR/nova/api/http/composer.json"; then
cd $BASEDIR/nova/api/http
# install PHP dependencies from composer
php /usr/bin/composer.phar install --no-dev --ignore-platform-reqs
php /usr/bin/composer install --no-dev --ignore-platform-reqs
fi
)

Expand All @@ -100,7 +100,7 @@ fi
if test -f "$BASEDIR/mission-portal/ldap/composer.json"; then
cd $BASEDIR/mission-portal/ldap
# install PHP dependencies from composer
php /usr/bin/composer.phar install --no-dev
php /usr/bin/composer install --no-dev
fi
)