Browse Source

Merge pull request #2967 from jaapmarcus/fix/v-update-sys-hestia-broken

Fix bug in v-update-sys-hestia
Raphael 3 years ago
parent
commit
4c325af091
1 changed files with 2 additions and 2 deletions
  1. 2 2
      func/main.sh

+ 2 - 2
func/main.sh

@@ -1505,8 +1505,8 @@ multiphp_default_version() {
 
 is_hestia_package(){
     check=false;
-    for package in $1; do 
-      if [ $package == "$2" ]; then 
+    for pkg in $1; do 
+      if [ "$pkg" == "$2" ]; then 
         check="true";
       fi
     done