diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-27 11:23:17 -0400 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-27 11:23:33 -0400 |
commit | 75f8b49616f0fc3ee4fff027382f6433756f891e (patch) | |
tree | eb0b64ab0c7151a7377271c063fdb9cabf2d5fd9 /build.py | |
parent | fix: don't set culture invariant mode (#9) (diff) | |
download | jellyfin-packaging-75f8b49616f0fc3ee4fff027382f6433756f891e.tar.gz jellyfin-packaging-75f8b49616f0fc3ee4fff027382f6433756f891e.tar.bz2 jellyfin-packaging-75f8b49616f0fc3ee4fff027382f6433756f891e.zip |
Fix nuget arch requirement
Diffstat (limited to 'build.py')
-rwxr-xr-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |