1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-03-09 23:38:55 +00:00
This commit is contained in:
topilski 2017-06-02 08:49:10 +03:00
parent e6a5edf891
commit 51558c02eb

View file

@ -116,8 +116,9 @@ class LinuxPlatforms(SupportedPlatforms):
def __init__(self):
SupportedPlatforms.__init__(self, 'linux', [Architecture('x86_64', 64, '/usr/local'),
Architecture('i386', 32, '/usr/local'),
Architecture('armv7l', 32, '/usr/local')], ['DEB', 'RPM', 'TGZ'],
Architecture('armv6l', 32, '/usr/local')], ['DEB', 'RPM', 'TGZ'])
Architecture('armv7l', 32, '/usr/local'),
Architecture('armv6l', 32, '/usr/local')],
['DEB', 'RPM', 'TGZ'])
def make_platform_by_arch(self, arch, package_types) -> Platform:
distr = linux_get_dist()