tell tar to not include the metadata into release

This commit is contained in:
Ilya Kisleyko 2020-06-09 18:30:30 +00:00
parent 113f13855a
commit 283d7c5749

View File

@ -16,7 +16,8 @@ mkdir tmp
cd tmp
mkdir ${DDIR}
cp -R ${SRCDIR}/* ${DDIR}/
tar cvfz ../${DDIR}.tar.gz ${DDIR}
#tell tar to not include the metadata
COPYFILE_DISABLE=1 tar cvfz ../${DDIR}.tar.gz ${DDIR}
cd ..
rm -rf tmp