mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-20 14:01:50 +03:00
332621f268
Squashed commit of the following: commit 425f1bd28074d22890629d06f43257e0353ce3d5 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Feb 8 20:15:58 2024 +0300 all: upd deps, go, scripts
33 lines
491 B
Bash
33 lines
491 B
Bash
#!/bin/sh
|
|
|
|
# This comment is used to simplify checking local copies of the script. Bump
|
|
# this number every time a significant change is made to this script.
|
|
#
|
|
# AdGuard-Project-Version: 1
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
if [ "$verbose" -gt '1' ]
|
|
then
|
|
env
|
|
set -x
|
|
x_flags='-x=1'
|
|
elif [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
x_flags='-x=0'
|
|
else
|
|
set +x
|
|
x_flags='-x=0'
|
|
fi
|
|
readonly x_flags
|
|
|
|
set -e -f -u
|
|
|
|
go="${GO:-go}"
|
|
readonly go
|
|
|
|
cd ./internal/tools/
|
|
"$go" get -u
|
|
"$go" mod tidy
|