mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-29 18:38:56 +03:00
184f476bdc
Squashed commit of the following:
commit 00fc45877776ed7d1c59be26330f6f16d784ead2
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Tue Aug 20 16:21:25 2024 +0300
all: imp lint
commit b04d9cd334a92faf21787e7e1ebf20d5e5fd0bee
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Tue Aug 20 14:40:18 2024 +0300
all: upd all
commit f151f8c313
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Fri Aug 16 13:12:36 2024 +0300
all: upd proxy
23 lines
424 B
Bash
23 lines
424 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: 2
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
set -e -f -u
|
|
|
|
if [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
fi
|
|
|
|
# NOTE: Adjust for your project.
|
|
# markdownlint\
|
|
# ./README.md\
|
|
# ;
|
|
|
|
# TODO(e.burkov): Lint markdown documents within this project.
|