mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-22 06:44:27 +03:00
8f53f6505b
Merge in DNS/adguard-home from upd-chlog to master Squashed commit of the following: commit 305ae5823fa2f61b5f58759a29330a65599c19ba Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Dec 11 17:19:51 2024 +0300 all: upd and fmt chlog
20 lines
393 B
Bash
20 lines
393 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 \
|
|
;
|