From 75f8b49616f0fc3ee4fff027382f6433756f891e Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 27 Mar 2024 11:23:17 -0400 Subject: Fix nuget arch requirement --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.py') diff --git a/build.py b/build.py index ad0f427..0f75b34 100755 --- a/build.py +++ b/build.py @@ -566,7 +566,7 @@ build_type = args.build_type build_arch = args.build_arch build_version = args.build_version -if build_type not in ["portable", "docker"] and not build_arch: +if build_type not in ["portable", "docker", "nuget"] and not build_arch: log(f"Error: You must specify an architecture for build platform {build_type}") exit(1) -- cgit