From 283d7c574970e72cc510b94406ba410029242285 Mon Sep 17 00:00:00 2001 From: Ilya Kisleyko Date: Tue, 9 Jun 2020 18:30:30 +0000 Subject: [PATCH] tell tar to not include the metadata into release --- examples/scripts/pack.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/scripts/pack.sh b/examples/scripts/pack.sh index 8b9032c..e99d8be 100755 --- a/examples/scripts/pack.sh +++ b/examples/scripts/pack.sh @@ -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