Skip to content

Commit

Permalink
finagle,finatra,scrooge,twitter-server,util: Update site scripts
Browse files Browse the repository at this point in the history
Problem/Solution

A lot of times site generation fails due to a scaladoc issue
but we dev/null the output making it hard to debug and fix.

Let's stop sending the site and scaladoc output to dev/null.

RB_ID=887173
  • Loading branch information
cacoco authored and jenkins committed Nov 7, 2016
1 parent 82abe3e commit 653925d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions updatedocs.bash
Expand Up @@ -6,13 +6,13 @@ dir=/tmp/util.$$
trap "rm -fr $dir" 0 1 2

echo 'making site...' 1>&2
./sbt util-doc/make-site >/dev/null 2>&1
./sbt --warn util-doc/make-site

unidoc=target/scala-2.11/unidoc/
rm -fr "$unidoc"

echo 'making unidoc...' 1>&2
./sbt unidoc >/dev/null 2>&1
./sbt --warn unidoc

echo 'cloning...' 1>&2
git clone -b gh-pages git@github.com:twitter/util.git $dir >/dev/null 2>&1
Expand Down

0 comments on commit 653925d

Please sign in to comment.