Rename IsIntalled -> IsPackageInstalled

This commit is contained in:
Mikhail Timofeev
2020-07-09 15:14:28 +03:00
parent a7ee8ab672
commit 0647236ac1
5 changed files with 7 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ hhvm_package=hhvm
# Test to see if the software in question is already installed, if not install it
echo "Checking to see if the installer script has already been run"
if ! IsInstalled ${hhvm_package}; then
if ! IsPackageInstalled ${hhvm_package}; then
apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94
add-apt-repository https://dl.hhvm.com/ubuntu
apt-get update
@@ -23,7 +23,7 @@ fi
# Run tests to determine that the software installed as expected
echo "Testing to make sure that script performed as expected, and basic scenarios work"
if ! IsInstalled ${hhvm_package}; then
if ! IsPackageInstalled ${hhvm_package}; then
echo "${hhvm_package} was not installed"
exit 1
fi