diff options
-rwxr-xr-x | build_tools/bin/chk_arch_pkg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_tools/bin/chk_arch_pkg.py b/build_tools/bin/chk_arch_pkg.py index 80ff599..7b80ae7 100755 --- a/build_tools/bin/chk_arch_pkg.py +++ b/build_tools/bin/chk_arch_pkg.py @@ -22,7 +22,7 @@ def getArchVer(): for repo in repos: try: if repo == "aur": - url='https://aur4.archlinux.org/packages/%s/' %currDirName + url='https://aur.archlinux.org/packages/%s/' %currDirName else: url='https://www.archlinux.org/packages/%s/x86_64/%s/' %(repo, currDirName) website = urllib2.urlopen(url) @@ -58,7 +58,7 @@ def getArchVer(): try: if repo == "aur": source = re.findall('<li><a href="(.*?)">Download snapshot</a>', website_text) - sourceURL = "https://aur4.archlinux.org" + source[0] + sourceURL = "https://aur.archlinux.org" + source[0] else: if "- Split Package Details</title>" in website_text: #print "Split Pkg" |