aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-27 11:23:17 -0400
committerJoshua M. Boniface <joshua@boniface.me>2024-03-27 11:23:33 -0400
commit75f8b49616f0fc3ee4fff027382f6433756f891e (patch)
treeeb0b64ab0c7151a7377271c063fdb9cabf2d5fd9
parentfix: don't set culture invariant mode (#9) (diff)
downloadjellyfin-packaging-75f8b49616f0fc3ee4fff027382f6433756f891e.tar.gz
jellyfin-packaging-75f8b49616f0fc3ee4fff027382f6433756f891e.tar.bz2
jellyfin-packaging-75f8b49616f0fc3ee4fff027382f6433756f891e.zip
Fix nuget arch requirement
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
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)
bgstack15