From 9bbcc0046cee01c12ac2e31b6f998046b860d6fc Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 11 Aug 2020 12:52:24 -0700 Subject: [PATCH] fix --archs default (#8195) --- tools/snap/build_remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/snap/build_remote.py b/tools/snap/build_remote.py index 66af9f404..ca5c1a677 100755 --- a/tools/snap/build_remote.py +++ b/tools/snap/build_remote.py @@ -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()