2024-08-20 18:38:04 +03: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.
|
|
|
|
#
|
|
|
|
# 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/*\
|
2024-11-06 18:45:21 +03:00
|
|
|
./scripts/make/*\
|
2024-08-20 18:38:04 +03:00
|
|
|
;
|