projects
/
hvutilities.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdc5b49
)
Make tarbz2 less verbose
author
Hugo Villeneuve
<hugo@hugovil.com>
Wed, 5 Feb 2014 03:00:00 +0000
(22:00 -0500)
committer
Hugo Villeneuve
<hugo@hugovil.com>
Wed, 5 Feb 2014 03:00:00 +0000
(22:00 -0500)
scripts/tarbz2
patch
|
blob
|
history
diff --git
a/scripts/tarbz2
b/scripts/tarbz2
index
a16c8c1
..
c830504
100755
(executable)
--- a/
scripts/tarbz2
+++ b/
scripts/tarbz2
@@
-59,6
+59,6
@@
if [ ! -d ${DIR} ]; then
fi
# Decompressing file to standard output and piping result to bzip2
-tar c
v
f - ${DIR} | ${BZIP2_BIN} -9 > ${DEST}.tar.bz2
+tar cf - ${DIR} | ${BZIP2_BIN} -9 > ${DEST}.tar.bz2
exit $?