From 2f7be7662661208c2942052c7ff481b8b43c8540 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Thu, 13 Dec 2018 09:46:25 -0500 Subject: [PATCH] Add maxcpucount to dotnet clean Fixes #120 as per https://github.com/dotnet/sdk/issues/2526 --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index eddf9b9bae..17e7d506c2 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'