summaryrefslogtreecommitdiffhomepage
path: root/vars/dist_tarballs.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-11-29 17:15:13 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-11-29 17:15:13 +0000
commit85bb6db32a44001d1f01256cbbf11d6d47c6dc1e (patch)
tree0ff1542949be4d056dce2dcb18f456e628664c1c /vars/dist_tarballs.vars
parent9cec6722e1b28380f098f9d4639178f967f171ce (diff)
downloadmidipix_build-85bb6db32a44001d1f01256cbbf11d6d47c6dc1e.tar.bz2
midipix_build-85bb6db32a44001d1f01256cbbf11d6d47c6dc1e.tar.xz
vars/dist_tarballs.vars:pkgp_dist_tarball_src(): update find(1) -not pathnames.
Diffstat (limited to 'vars/dist_tarballs.vars')
-rw-r--r--vars/dist_tarballs.vars9
1 files changed, 6 insertions, 3 deletions
diff --git a/vars/dist_tarballs.vars b/vars/dist_tarballs.vars
index f39ac170..dcb6a8d8 100644
--- a/vars/dist_tarballs.vars
+++ b/vars/dist_tarballs.vars
@@ -52,9 +52,12 @@ pkgp_dist_tarball_src() {
ex_log_msg info "Building source tarball...";
tar -cpf - $(find tmp -mindepth 2 -maxdepth 2 \
-not -path tmp/.\* \
- -not -path tmp/ntctty/.git \
- -not -path tmp/psxscl/.git \
- -not -path tmp/ptycon/.git) |\
+ -not -path tmp/ntctty\*/ntctty/.git \
+ -not -path tmp/psxscl\*/psxscl/.git \
+ -not -path tmp/ptycon\*/ptycon/.git \
+ -not -path tmp/ntctty\*.log \
+ -not -path tmp/psxscl\*.log \
+ -not -path tmp/ptycon\*.log) |\
"${TARBALL_COMPRESS_CMD}" ${TARBALL_COMPRESS_ARGS} -c > "${TARBALL_SRC_FNAME}";
ex_log_msg info "Finished building source tarball.";
if [ -x "$(which gpg 2>/dev/null)" -a -n "${TARBALL_SIGN_GPG_KEY}" ] && \