examples/downloader: update suggested URL

The old one no longer worked. Using multiple URLs also helps better
showcase rich's progress bars.

Signed-off-by: Louis Sautier <sautier.louis@gmail.com>
This commit is contained in:
Louis Sautier 2024-08-15 07:00:06 +02:00
parent 4c19cacb59
commit 90e831bd30
No known key found for this signature in database
GPG Key ID: A777716B30AE82E3
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ def download(urls: Iterable[str], dest_dir: str):
if __name__ == "__main__":
# Try with https://releases.ubuntu.com/20.04/ubuntu-20.04.3-desktop-amd64.iso
# Try with https://releases.ubuntu.com/noble/ubuntu-24.04-desktop-amd64.iso
# and https://releases.ubuntu.com/noble/ubuntu-24.04-live-server-amd64.iso
if sys.argv[1:]:
download(sys.argv[1:], "./")
else: