distribution

This commit is contained in:
Marc Beninca 2021-10-10 04:01:32 +02:00 committed by Marc Beninca
parent 74e9b15378
commit c09a71b322
3 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,6 @@ ARCHITECTURES_SUBSYSTEMS = {
'x86_64': ['msys', 'clang64', 'mingw64', 'ucrt64'],
'i686': ['msys', 'clang32', 'mingw32'],
}
DISTRIBUTION = 'distrib'
MINGW = 'mingw'
@ -30,7 +29,8 @@ class Remote:
a = {}
c = {}
for architecture in self.architectures:
location = os.path.join(self.location, DISTRIBUTION, architecture)
location = os.path.join(self.location,
msys.DISTRIBUTION, architecture)
a[architecture] = hypertext.HyperText(location).archive
#
c[architecture] = {}