diff options
| -rw-r--r-- | .gitignore | 12 | ||||
| -rwxr-xr-x | debian/rules | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index f34c83571..ff9e52259 100644 --- a/.gitignore +++ b/.gitignore @@ -235,7 +235,19 @@ pip-log.txt MediaBrowser.WebDashboard/dashboard-ui/.idea/ /.vs +########## +# Rider +########## .idea/ +######################### +# Debian build artifacts +######################### + +debian/.debhelper/ +debian/files +debian/jellyfin.substvars +debian/jellyfin/ + # Don't ignore the debian/bin folder !debian/bin/ 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' |
