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 @@ PACKAGE=build-essential
# 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 $PACKAGE; then
if ! IsPackageInstalled $PACKAGE; then
echo "Installing $PACKAGE"
apt-get install -y --no-install-recommends $PACKAGE
else