mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-19 13:31:53 +03:00
b1a0f4fa44
Squashed commit of the following:
commit 265097a29ed8e89933c08cb8094297ac89a8b140
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Nov 6 18:03:19 2024 +0300
all: fix darwin find, log changes
commit 298b31c4078239ce83fdf7a3a741062e56f35b9d
Merge: 82c487518 d06b18a49
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Nov 6 18:01:28 2024 +0300
Merge branch 'master' into AG-29637-sign-release
commit 82c487518bd21a995921a7d5265da6884aac9e9f
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Nov 6 17:34:12 2024 +0300
scripts: imp fmt manually
commit 4e33ec1a77dd239df8b5eeec16843e517797d486
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Nov 6 14:42:09 2024 +0300
scripts: imp fmt, sign releases
26 lines
556 B
Bash
26 lines
556 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
|
|
|
|
# Don't use -f, because we use globs in this script.
|
|
set -e -u
|
|
|
|
if [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
fi
|
|
|
|
# NOTE: Adjust for your project.
|
|
#
|
|
# TODO(e.burkov): Add build-docker.sh, build-release.sh and install.sh.
|
|
shellcheck -e 'SC2250' -f 'gcc' -o 'all' -x --\
|
|
./scripts/hooks/*\
|
|
./scripts/snap/*\
|
|
./scripts/make/*\
|
|
;
|