Skip to content

Commit

Permalink
fix doblue slash in packman repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
guoyunhe authored Oct 23, 2024
1 parent 8b38e4e commit e012d73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions opi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ def add_packman_repo(dup=False):
else:
print("Adding packman repo")
packman_mirrors = {
"ftp.fau.de - University of Erlangen, Germany - 1h sync": "https://ftp.fau.de/packman/",
"ftp.halifax.rwth-aachen.de - University of Aachen, Germany - 1h sync": "https://ftp.halifax.rwth-aachen.de/packman/",
"ftp.gwdg.de - University of Göttingen, Germany - 4h sync": "https://ftp.gwdg.de/pub/linux/misc/packman/",
"mirror.karneval.cz - TES Media, Czech Republic - 1h sync": "https://mirror.karneval.cz/pub/linux/packman/",
"mirrors.aliyun.com - Alibaba Cloud, China - 24h sync": "https://mirrors.aliyun.com/packman/",
"ftp.fau.de - University of Erlangen, Germany - 1h sync": "https://ftp.fau.de/packman",
"ftp.halifax.rwth-aachen.de - University of Aachen, Germany - 1h sync": "https://ftp.halifax.rwth-aachen.de/packman",
"ftp.gwdg.de - University of Göttingen, Germany - 4h sync": "https://ftp.gwdg.de/pub/linux/misc/packman",
"mirror.karneval.cz - TES Media, Czech Republic - 1h sync": "https://mirror.karneval.cz/pub/linux/packman",
"mirrors.aliyun.com - Alibaba Cloud, China - 24h sync": "https://mirrors.aliyun.com/packman",
}
mirror = ask_for_option(list(packman_mirrors.keys()), 'Pick a mirror near your location (0 to quit):')
mirror = packman_mirrors[mirror]
Expand Down

0 comments on commit e012d73

Please sign in to comment.