mysql: fix variable name

This commit is contained in:
bigeagle 2016-08-03 23:56:24 +08:00
parent e09e1d80f3
commit df2a022525
No known key found for this signature in database
GPG Key ID: 9171A4571C27920A

View File

@ -30,7 +30,7 @@ MYSQL_APT_REPOS=("mysql-5.6" "mysql-5.7" "mysql-tools" "connector-python-2.1")
base_url="${BASE_URL}/apt/ubuntu"
for version in ${UBUNTU_VERSIONS[@]}; do
for repo in ${MYSQL_REPOS[@]}; do
for repo in ${MYSQL_APT_REPOS[@]}; do
for arch in "amd64" "i386"; do
apt-download-binary ${base_url} "$version" "$repo" "$arch" "${UBUNTU_PATH}" || true
done
@ -40,7 +40,7 @@ echo "Ubuntu finished"
base_url="${BASE_URL}/apt/debian"
for version in ${DEBIAN_VERSIONS[@]}; do
for repo in ${MYSQL_REPOS[@]}; do
for repo in ${MYSQL_APT_REPOS[@]}; do
for arch in "amd64" "i386"; do
apt-download-binary ${base_url} "$version" "$repo" "$arch" "${UBUNTU_PATH}" || true
done