1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-25 02:29:32 +02:00

Update generate_config.sh

Fixed bug in loop by replacing the variable.
This commit is contained in:
Malte Jesgarzewsky 2022-09-05 09:41:19 +02:00 committed by GitHub
parent 1c15133a52
commit b5f5b53e37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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