This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
zulip
mirror of
https://github.com/zulip/zulip.git
Watch
1
Star
0
Fork
You've already forked zulip
0
Code
Issues
Projects
Releases
Wiki
Activity
81e6a022e6
zulip
/
tools
/
build-docs
7 lines
82 B
Plaintext
Raw
Normal View
History
Unescape
Escape
tools: Add wrapper tool 'build-docs' for building documentation.
2017-06-15 04:15:47 +02:00
#!/usr/bin/env bash
build-docs: Fix shellcheck warnings. In tools/build-docs line 3: cd "$(dirname "$0")"/../docs ^-- SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2018-08-03 02:14:48 +02:00
set -eu
tools: Add wrapper tool 'build-docs' for building documentation.
2017-06-15 04:15:47 +02:00
cd "$(dirname "$0")"/../docs
rm -rf _build
make html