From 8735afb1bbccb2ba7cd6533fc5ef2d8479aeb905 Mon Sep 17 00:00:00 2001 From: matthew wall Date: Sun, 14 Jan 2024 12:47:32 -0500 Subject: [PATCH] attempt to exclude undesired artifacts from the distribution source tree even when doing multiple builds --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index cfad1ff9..3a3ddf18 100644 --- a/makefile +++ b/makefile @@ -195,7 +195,7 @@ src-tarball: $(DSTDIR)/$(SRCPKG) $(DSTDIR)/$(SRCPKG): mkdir -p $(BLDDIR)/weewx-$(VERSION) - rsync -ar ./ $(BLDDIR)/weewx-$(VERSION) --exclude-from .gitignore --exclude .git --exclude .editorconfig --exclude .github --exclude .gitignore + rsync -ar ./ $(BLDDIR)/weewx-$(VERSION) --exclude-from .gitignore --exclude .git --exclude .editorconfig --exclude .github --exclude .gitignore --delete mkdir -p $(DSTDIR) tar cfz $(DSTDIR)/$(SRCPKG) -C $(BLDDIR) weewx-$(VERSION)