diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-01-28 15:01:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-28 15:01:29 +0100 |
| commit | acfacabf0ce89951924ab90f83e8c089043584f9 (patch) | |
| tree | 0c578cfc6757233fa354da8b6dc36c7a12e7e79a /deployment/macos/docker-build.sh | |
| parent | 0a95c3a1c2737d803a342beb605d8f592ea50cd3 (diff) | |
| parent | 84fbf64867b69129938c4a800c8605793bc11399 (diff) | |
Merge pull request #2347 from Matt07211/fix-2255
Fix broken webserver caused by dotnet publish. Temp Fix for #2255
Diffstat (limited to 'deployment/macos/docker-build.sh')
| -rwxr-xr-x | deployment/macos/docker-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/macos/docker-build.sh b/deployment/macos/docker-build.sh index 1b4a554e6..f9417388d 100755 --- a/deployment/macos/docker-build.sh +++ b/deployment/macos/docker-build.sh @@ -26,7 +26,7 @@ rm -rf ${web_build_dir} version="$( grep "version:" ./build.yaml | sed -E 's/version: "([0-9\.]+.*)"/\1/' )" # Build archives -dotnet publish --configuration Release --self-contained --runtime osx-x64 --output /dist/jellyfin_${version}/ "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none;UseAppHost=true" +dotnet publish Jellyfin.Server --configuration Release --self-contained --runtime osx-x64 --output /dist/jellyfin_${version}/ "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none;UseAppHost=true" tar -cvzf /jellyfin_${version}.portable.tar.gz -C /dist jellyfin_${version} rm -rf /dist/jellyfin_${version} |
