mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
fix --archs default (#8195)
This commit is contained in:
parent
b3dd2c09ba
commit
9bbcc0046c
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ def main():
|
|||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('targets', nargs='+', choices=['ALL', 'DNS_PLUGINS', 'certbot', *PLUGINS],
|
||||
help='the list of snaps to build')
|
||||
parser.add_argument('--archs', nargs='+', choices=['amd64', 'arm64', 'armhf'], default='amd64',
|
||||
parser.add_argument('--archs', nargs='+', choices=['amd64', 'arm64', 'armhf'], default=['amd64'],
|
||||
help='the architectures for which snaps are built')
|
||||
args = parser.parse_args()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue