From: Sergey Matveev Date: Sat, 29 Dec 2018 22:19:37 +0000 (+0300) Subject: Fix COMPLI tests inclusion in tarball X-Git-Tag: 4.7~4 X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=commitdiff_plain;h=df8790673076ac860097fefee6f165f99056f678 Fix COMPLI tests inclusion in tarball --- diff --git a/makedist.sh b/makedist.sh index 6618333..e436592 100755 --- a/makedist.sh +++ b/makedist.sh @@ -6,7 +6,9 @@ release=$1 [ -n "$release" ] mkdir $tmp/pyderasn-"$release" -cut -d" " -f2 < MANIFEST.in > $tmp/includes +cut -d" " -f2 < MANIFEST.in | while read path; do + find $path >> $tmp/includes +done echo pyderasn.py >> $tmp/includes echo setup.py >> $tmp/includes tar cfI - $tmp/includes | tar xfC - $tmp/pyderasn-"$release"