mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-01-06 14:07:20 +03:00
261c1599a5
Merge in DNS/adguard-home from 7510-fix-openapi to master Squashed commit of the following: commit b67d6f964081cf12bea5c3406eba64a432d02e81 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Dec 19 15:28:46 2024 +0300 openapi: fmt openapi chlog commit 738becf0af96b3bfc4b549be9ad84cbce0d9cf39 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Dec 19 14:44:36 2024 +0300 openapi: log changes commit a398712ed1b5696f944f15404e340e002822c89f Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Dec 19 14:34:11 2024 +0300 openapi: fix spec
21 lines
419 B
Bash
21 lines
419 B
Bash
#!/bin/sh
|
|
|
|
# This comment is used to simplify checking local copies of the script. Bump
|
|
# this number every time a remarkable change is made to this script.
|
|
#
|
|
# AdGuard-Project-Version: 3
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
set -e -f -u
|
|
|
|
if [ "$verbose" -gt '0' ]; then
|
|
set -x
|
|
fi
|
|
|
|
# TODO(e.burkov): Lint allmarkdown documents within this project.
|
|
markdownlint \
|
|
./CHANGELOG.md \
|
|
./openapi/CHANGELOG.md \
|
|
;
|