Forráskód Böngészése

Update generate_config.sh

Fixed bug in loop by replacing the variable.
Malte Jesgarzewsky 3 éve
szülő
commit
b5f5b53e37
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      generate_config.sh

+ 2 - 2
generate_config.sh

@@ -146,10 +146,10 @@ while [ -z "${MAILCOW_BRANCH}" ]; do
   read -r -p  "Choose the Branch with it´s number [1/2] " branch
   read -r -p  "Choose the Branch with it´s number [1/2] " branch
   case $branch in
   case $branch in
     [2])
     [2])
-      git_branch="nightly"
+      MAILCOW_BRANCH="nightly"
       ;;
       ;;
     *)
     *)
-      git_branch="master"
+      MAILCOW_BRANCH="master"
     ;;
     ;;
   esac
   esac
 done
 done