You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2016/09/10 06:58:22 UTC

couchdb commit: updated refs/heads/master to 308d311

Repository: couchdb
Updated Branches:
  refs/heads/master 16cccd37a -> 308d31199


fix: avoid bogus tar error message on Mac systems


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/308d3119
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/308d3119
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/308d3119

Branch: refs/heads/master
Commit: 308d31199e7b0f28bf3afedd81cdea72fe364991
Parents: 16cccd3
Author: Jan Lehnardt <ja...@apache.org>
Authored: Sat Sep 10 08:58:15 2016 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Sat Sep 10 08:58:15 2016 +0200

----------------------------------------------------------------------
 build-aux/couchdb-build-release.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/308d3119/build-aux/couchdb-build-release.sh
----------------------------------------------------------------------
diff --git a/build-aux/couchdb-build-release.sh b/build-aux/couchdb-build-release.sh
index 45f754e..4cea72a 100755
--- a/build-aux/couchdb-build-release.sh
+++ b/build-aux/couchdb-build-release.sh
@@ -25,7 +25,7 @@ for repo in *; do
   cd $repo
   mkdir ../../$RELDIR/src/$repo
   git_ish=`git rev-parse --short HEAD`
-  git archive $git_ish | tar -xC ../../$RELDIR/src/$repo/ -f -
+  git archive $git_ish | tar --exclude '*do_not_compile.erl' -xC ../../$RELDIR/src/$repo/ -f -
   set +e
   grep -rl '{vsn, git}' ../../$RELDIR/src/$repo/ | xargs sed -ie "s/{vsn, git}/{vsn, \"`git describe --always --tags`\"}/" 2> /dev/null
   set -e