2024-08-20 16:38:04 +01:00
|
|
|
#!/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.
|
|
|
|
#
|
2024-11-08 14:18:16 +00:00
|
|
|
# AdGuard-Project-Version: 3
|
2024-08-20 16:38:04 +01:00
|
|
|
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
|
|
readonly verbose
|
|
|
|
|
|
|
|
set -e -f -u
|
|
|
|
|
2024-11-08 14:18:16 +00:00
|
|
|
if [ "$verbose" -gt '0' ]; then
|
2024-08-20 16:38:04 +01:00
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
|
|
|
# TODO(e.burkov): Lint markdown documents within this project.
|
2024-11-08 14:18:16 +00:00
|
|
|
# markdownlint \
|
|
|
|
# ./README.md \
|
|
|
|
# ;
|