Skip to content

Commit

Permalink
Fix deb promote script for arm (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-selo authored Sep 6, 2024
1 parent 01bd669 commit 5685c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/test_observer/external_apis/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, arch: str, series: str, pocket: str, apt_repo: str):
:pocket: deb pocket ("proposed" or "updates")
:apt_repo: repo on archive (e.g. main, universe)
"""
if arch == "arm":
if arch.startswith("arm"):
archive_url = "ports.ubuntu.com/ubuntu-ports/dists"
else:
archive_url = "us.archive.ubuntu.com/ubuntu/dists"
Expand Down

0 comments on commit 5685c87

Please sign in to comment.