mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Fix style
This commit is contained in:
parent
45ac74617b
commit
4a557201c8
@ -1,6 +1,5 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import re
|
||||
import os
|
||||
import logging
|
||||
|
||||
@ -54,16 +53,16 @@ def download_packets(release, dest_path=PACKETS_DIR):
|
||||
return os.path.join(dest_path, pkg_name)
|
||||
|
||||
for pkg in (
|
||||
CLICKHOUSE_COMMON_STATIC_PACKET_NAME,
|
||||
CLICKHOUSE_COMMON_STATIC_DBG_PACKET_NAME,
|
||||
CLICKHOUSE_COMMON_STATIC_PACKET_NAME,
|
||||
CLICKHOUSE_COMMON_STATIC_DBG_PACKET_NAME,
|
||||
):
|
||||
url = (DOWNLOAD_PREFIX + pkg).format(version=release.version, type=release.type)
|
||||
pkg_name = get_dest_path(pkg.format(version=release.version))
|
||||
download_packet(url, pkg_name)
|
||||
|
||||
for pkg, fallback in (
|
||||
(CLICKHOUSE_SERVER_PACKET_NAME, CLICKHOUSE_SERVER_PACKET_FALLBACK),
|
||||
(CLICKHOUSE_CLIENT_PACKET_NAME, CLICKHOUSE_CLIENT_PACKET_FALLBACK),
|
||||
(CLICKHOUSE_SERVER_PACKET_NAME, CLICKHOUSE_SERVER_PACKET_FALLBACK),
|
||||
(CLICKHOUSE_CLIENT_PACKET_NAME, CLICKHOUSE_CLIENT_PACKET_FALLBACK),
|
||||
):
|
||||
url = (DOWNLOAD_PREFIX + pkg).format(version=release.version, type=release.type)
|
||||
pkg_name = get_dest_path(pkg.format(version=release.version))
|
||||
@ -77,7 +76,6 @@ def download_packets(release, dest_path=PACKETS_DIR):
|
||||
download_packet(url, pkg_name)
|
||||
|
||||
|
||||
|
||||
def download_last_release(dest_path):
|
||||
current_release = get_previous_release(None)
|
||||
download_packets(current_release, dest_path=dest_path)
|
||||
|
Loading…
Reference in New Issue
Block a user