This commit is contained in:
Marc Beninca 2021-10-10 19:08:47 +02:00 committed by Marc Beninca
parent 9b24cc0c71
commit 5812aae871
2 changed files with 2 additions and 2 deletions

View file

@ -2,6 +2,7 @@ import argparse
import os import os
import msys import msys
import subsystem
ACTION = 'action' ACTION = 'action'
ARCHITECTURES = 'architectures' ARCHITECTURES = 'architectures'
@ -51,7 +52,7 @@ msys remote repository's location
list of architectures to sync list of architectures to sync
''') ''')
sync.add_argument(f'-{SUBSYSTEMS[0]}', f'--{SUBSYSTEMS}', type=str, sync.add_argument(f'-{SUBSYSTEMS[0]}', f'--{SUBSYSTEMS}', type=str,
nargs='+', choices=msys.SUBSYSTEMS, help='''\ nargs='+', choices=subsystem.FAMILIES, help='''\
list of subsystems to sync list of subsystems to sync
''') ''')

View file

@ -7,4 +7,3 @@ SIGNATURE = '.sig'
SUBSYSTEM = 'msys' SUBSYSTEM = 'msys'
ARCHITECTURES = [ARCHITECTURE, 'i686'] ARCHITECTURES = [ARCHITECTURE, 'i686']
SUBSYSTEMS = [SUBSYSTEM, 'clang', 'mingw', 'ucrt']