diff options
| author | Joshua Boniface <joshua@boniface.me> | 2018-12-13 09:46:25 -0500 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2018-12-13 09:46:25 -0500 |
| commit | 2f7be7662661208c2942052c7ff481b8b43c8540 (patch) | |
| tree | 23ca6b98644cfede50fd1970b734396dd2d56b6b | |
| parent | af520f0e3aff9cd8b617dbb16374d6e3d5d8d467 (diff) | |
Add maxcpucount to dotnet clean
Fixes #120 as per https://github.com/dotnet/sdk/issues/2526
| -rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index eddf9b9ba..17e7d506c 100755 --- a/debian/rules +++ b/debian/rules @@ -18,5 +18,5 @@ override_dh_auto_build: dotnet publish --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/jellyfin/bin' override_dh_auto_clean: - dotnet clean --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln || true + dotnet clean -maxcpucount:1 --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln || true rm -rf '$(CURDIR)/usr/lib/jellyfin' |
