You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/10/07 19:36:05 UTC

couchdb commit: updated refs/heads/master to 204ee74

Repository: couchdb
Updated Branches:
  refs/heads/master 9d579fa5a -> 204ee7460


Redirect stderr: we don't want to see "sed: no input files" here


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

Branch: refs/heads/master
Commit: 204ee7460827d3f8e97eb5551af55033ee6400d0
Parents: 9d579fa
Author: Alexander Shorin <kx...@apache.org>
Authored: Wed Oct 7 20:34:22 2015 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Wed Oct 7 20:34:22 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/couchdb/blob/204ee746/build-aux/couchdb-build-release.sh
----------------------------------------------------------------------
diff --git a/build-aux/couchdb-build-release.sh b/build-aux/couchdb-build-release.sh
index 5feeb1a..47c3926 100755
--- a/build-aux/couchdb-build-release.sh
+++ b/build-aux/couchdb-build-release.sh
@@ -27,7 +27,7 @@ for repo in *; do
   git_ish=`git rev-parse --short HEAD`
   git archive $git_ish | tar -xC ../../$RELDIR/src/$repo/
   set +e
-  grep -rl '{vsn, git}' ../../$RELDIR/src/$repo/ | xargs sed -i "s/{vsn, git}/{vsn, \"`git describe --always --tags`\"}/" > /dev/null
+  grep -rl '{vsn, git}' ../../$RELDIR/src/$repo/ | xargs sed -i "s/{vsn, git}/{vsn, \"`git describe --always --tags`\"}/" 2> /dev/null
   set -e
   cd ..
 done