subsystems

This commit is contained in:
Marc Beninca 2021-10-09 18:16:40 +02:00 committed by Marc Beninca
parent e52047d1fd
commit 960f6303fd
2 changed files with 2 additions and 1 deletions

View file

@ -51,7 +51,7 @@ msys remote repository's location
list of architectures to sync
''')
sync.add_argument(f'-{SUBSYSTEMS[0]}', f'--{SUBSYSTEMS}', type=str,
nargs='+', choices=['msys', 'mingw'], help='''\
nargs='+', choices=remote.SUBSYSTEMS, help='''\
list of subsystems to sync
''')

View file

@ -10,6 +10,7 @@ ARCHITECTURES = ['x86_64', 'i686']
CHARSET = 'u8'
DISTRIBUTION = 'distrib'
SIGNATURE = '.sig'
SUBSYSTEMS = ['msys', 'mingw']
class Remote: