Skip to content

Commit

Permalink
Fix PHP setup in install-requirements.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Apr 7, 2022
1 parent ce609be commit 5a8b8af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/install-requirements.sh
Expand Up @@ -14,10 +14,9 @@ if ! check_package php"$VERSION"; then
chmod a+x ./install.sh
./install.sh local "$VERSION"
else
apt-get install -y php"$VERSION" php"$VERSION"-xml php"$VERSION"-dev
apt-get install -y --no-install-recommends php"$VERSION" php"$VERSION"-cli php"$VERSION"-xml php"$VERSION"-dev
fi

# Smoke Tests
php -i | grep "ICU version =>" | sed -e "s|.*=> s*||"
php -v
php -m

0 comments on commit 5a8b8af

Please sign in to comment.