diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2022-08-13 21:46:36 -0400 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2022-08-13 21:46:36 -0400 |
| commit | c7edf8b565e7d52400cf65e747a8e800ecd3a036 (patch) | |
| tree | f2e173a6fe40697be1cf3d6c6482c08a0e9a3c18 /deployment/build.linux.amd64 | |
| parent | 010228b3c0230d9ede95cc53e3d82b798bb7975f (diff) | |
Backport pull request #8257 from jellyfin/release-10.8.z
Use separate args for dotnet publish commands
Original-merge: d260f308106db648014a0bb3fd1911c838f899ce
Merged-by: Joshua M. Boniface <joshua@boniface.me>
Backported-by: Joshua Boniface <joshua@boniface.me>
Diffstat (limited to 'deployment/build.linux.amd64')
| -rwxr-xr-x | deployment/build.linux.amd64 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/build.linux.amd64 b/deployment/build.linux.amd64 index a1e7f661a..05059e4ed 100755 --- a/deployment/build.linux.amd64 +++ b/deployment/build.linux.amd64 @@ -16,7 +16,7 @@ else fi # Build archives -dotnet publish Jellyfin.Server --configuration Release --self-contained --runtime linux-x64 --output dist/jellyfin-server_${version}/ "-p:DebugSymbols=false;DebugType=none;UseAppHost=true" +dotnet publish Jellyfin.Server --configuration Release --self-contained --runtime linux-x64 --output dist/jellyfin-server_${version}/ -p:DebugSymbols=false -p:DebugType=none -p:UseAppHost=true tar -czf jellyfin-server_${version}_linux-amd64.tar.gz -C dist jellyfin-server_${version} rm -rf dist/jellyfin-server_${version} |
