diff --git a/mysql.sh b/mysql.sh index 0786308..4c8b70f 100755 --- a/mysql.sh +++ b/mysql.sh @@ -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