Welcome to mirror list, hosted at ThFree Co, Russian Federation.

checkDocs.bash « azure-pipelines « .ci - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fe8bc12509b81f02bca8873e657659c9e334fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash
#
# Copyright 2020-2021 The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.

set -e

# Get path to the script that generates the cmake options docs
generateScript="$BUILD_SOURCESDIRECTORY/scripts/generate_cmake_options_docs.py"

# Get current content of the docs
currentDocs="$BUILD_SOURCESDIRECTORY/docs/dev/build-instructions/cmake_options.md"

generatedDocs="/tmp/generated_docs.md"

"$generateScript" > "$generatedDocs"

diff "$currentDocs" "$generatedDocs"