mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-23 21:15:35 +08:00
15 lines
399 B
Bash
Executable file
15 lines
399 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
|
|
if ! command -v dot &> /dev/null; then
|
|
echo "dot command could not be found, please install graphviz"
|
|
exit 1
|
|
fi
|
|
|
|
# Build documentation with warnings treated as errors
|
|
make -C docs "${1:-html}" SPHINXOPTS='--nitpicky --fail-on-warning --write-all --keep-going --jobs auto'
|