No need for tar -cf - just use tar -c - dedup - deduplicating backup program
HTML git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit 2d0701e96dd5242eefe456dca44a5c2b8ba67eb5
DIR parent 5010f8684c7a95897a0e59980d25f36eae6eeade
HTML Author: sin <sin@2f30.org>
Date: Thu, 25 Apr 2019 20:22:11 +0100
No need for tar -cf - just use tar -c
Diffstat:
M Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR 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