dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit 2d0701e96dd5242eefe456dca44a5c2b8ba67eb5
parent 5010f8684c7a95897a0e59980d25f36eae6eeade
Author: sin <sin@2f30.org>
Date:   Thu, 25 Apr 2019 20:22:11 +0100

No need for tar -cf - just use tar -c

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -51,7 +51,7 @@ uninstall: dist: clean mkdir -p dedup-$(VERSION) cp `find . -maxdepth 1 -type f` dedup-$(VERSION) - tar -cf - dedup-$(VERSION) | gzip > dedup-$(VERSION).tar.gz + tar -c dedup-$(VERSION) | gzip > dedup-$(VERSION).tar.gz .SUFFIXES: .c .o