mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 12:42:50 +00:00
mysql: fix variable name
This commit is contained in:
parent
e09e1d80f3
commit
df2a022525
4
mysql.sh
4
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"
|
base_url="${BASE_URL}/apt/ubuntu"
|
||||||
for version in ${UBUNTU_VERSIONS[@]}; do
|
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
|
for arch in "amd64" "i386"; do
|
||||||
apt-download-binary ${base_url} "$version" "$repo" "$arch" "${UBUNTU_PATH}" || true
|
apt-download-binary ${base_url} "$version" "$repo" "$arch" "${UBUNTU_PATH}" || true
|
||||||
done
|
done
|
||||||
@ -40,7 +40,7 @@ echo "Ubuntu finished"
|
|||||||
|
|
||||||
base_url="${BASE_URL}/apt/debian"
|
base_url="${BASE_URL}/apt/debian"
|
||||||
for version in ${DEBIAN_VERSIONS[@]}; do
|
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
|
for arch in "amd64" "i386"; do
|
||||||
apt-download-binary ${base_url} "$version" "$repo" "$arch" "${UBUNTU_PATH}" || true
|
apt-download-binary ${base_url} "$version" "$repo" "$arch" "${UBUNTU_PATH}" || true
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user