Skip to content

Commit ac5be72

Browse files
Merge pull request #2148 from aleksandrychev/ENT-13788_3.24.x
ENT-13788: Use composer instead of composer.phar in the bootstrap tarballs (3.24.x)
2 parents ec7a334 + 4f22e7e commit ac5be72

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build-scripts/bootstrap-tarballs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ fi
7777
if test -f "$BASEDIR/mission-portal/composer.json"; then
7878
cd $BASEDIR/mission-portal
7979
# install PHP dependencies from composer
80-
php /usr/bin/composer.phar install --no-dev
80+
php /usr/bin/composer install --no-dev
8181
fi
8282
)
8383

8484
(
8585
if test -f "$BASEDIR/nova/api/http/composer.json"; then
8686
cd $BASEDIR/nova/api/http
8787
# install PHP dependencies from composer
88-
php /usr/bin/composer.phar install --no-dev --ignore-platform-reqs
88+
php /usr/bin/composer install --no-dev --ignore-platform-reqs
8989
fi
9090
)
9191

@@ -100,7 +100,7 @@ fi
100100
if test -f "$BASEDIR/mission-portal/ldap/composer.json"; then
101101
cd $BASEDIR/mission-portal/ldap
102102
# install PHP dependencies from composer
103-
php /usr/bin/composer.phar install --no-dev
103+
php /usr/bin/composer install --no-dev
104104
fi
105105
)
106106

0 commit comments

Comments
 (0)