in util.py [0:0]
def download_release_files():
blobs = get_blobs()
for _, fname in enumerate(blobs):
if fname == "cyclecloud_api":
continue
url = os.path.join(RELEASE_URL, fname)
run(["curl", "-L", "-C", "-", "-s", "-O", url], cwd="blobs", check=True)