mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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>
7 lines
82 B
Bash
Executable File
7 lines
82 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"/../docs
|
|
rm -rf _build
|
|
make html
|