aboutsummaryrefslogtreecommitdiffstats
path: root/dist.sh
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2014-09-05 11:21:42 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2014-09-05 11:21:42 +0100
commite48534950a62f569aafd892b2cb810c9a6725e7b (patch)
tree99c5f057b509c248cc215f4fb4a075489628ed03 /dist.sh
parent2ad4f0abc90c2017041f4734f31fc3ffe9610188 (diff)
downloadrspamd-e48534950a62f569aafd892b2cb810c9a6725e7b.tar.gz
rspamd-e48534950a62f569aafd892b2cb810c9a6725e7b.zip
Add 'dist' target.
Diffstat (limited to 'dist.sh')
-rwxr-xr-xdist.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist.sh b/dist.sh
index c8b201e3d..af4e14e9e 100755
--- a/dist.sh
+++ b/dist.sh
@@ -5,7 +5,7 @@ if [ $# -ne 1 ] ; then
exit 1
fi
-FNAME=shift
+FNAME=$1
PREFIX=`basename $FNAME | sed -e 's/\.tar.*$//'`
OUT=""
@@ -21,5 +21,5 @@ for sub in $SUBMODULES ; do
(cd $sub && git ls-files | sed -e "s|^|$sub/|" >> $OUT)
done
-tar -c --no-recursion --transform "s|^|$PREFIX/|" -a -T $OUT -v -f $FNAME
+tar -c --exclude='.[^/]*' --exclude='*.xz' --exclude='*.gz' --no-recursion --transform "s|^|$PREFIX/|" -a -T $OUT -v -f $FNAME
rm -f $OUT