aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index 2ba2c02..1c6b37b 100755
--- a/build.py
+++ b/build.py
@@ -483,7 +483,7 @@ def build_nuget(
f"{pack_command_base} --version-suffix {date} -p:Stability=Unstable"
)
else:
- pack_command = f"{pack_command_base} -pVersion={jellyfin_version}"
+ pack_command = f"{pack_command_base} -p:Version={jellyfin_version}"
for project in project_files:
log(f">> Packing {project}...")
bgstack15