mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-01 07:57:26 +01:00
Fixed: Problem on x86 architecture in slonly repo #59
This commit is contained in:
parent
341dfe71ef
commit
38d9c8606a
1 changed files with 4 additions and 1 deletions
|
@ -91,7 +91,10 @@ class RepoInit(object):
|
||||||
if self.meta.arch == "x86_64":
|
if self.meta.arch == "x86_64":
|
||||||
arch = "{0}-x86_64".format(ver)
|
arch = "{0}-x86_64".format(ver)
|
||||||
if self.meta.slack_rel == "current":
|
if self.meta.slack_rel == "current":
|
||||||
arch = "{0}-x86_64".format(self.meta.slack_rel)
|
if self.meta.arch == "x86_64":
|
||||||
|
arch = "{0}-x86_64".format(self.meta.slack_rel)
|
||||||
|
else:
|
||||||
|
arch = "{0}-x86".format(self.meta.slack_rel)
|
||||||
self.mirror = "{0}{1}/".format(self.def_repo_dict["slonly"], arch)
|
self.mirror = "{0}{1}/".format(self.def_repo_dict["slonly"], arch)
|
||||||
|
|
||||||
def _init_ktown(self):
|
def _init_ktown(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue