mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 22:15:45 +03:00
d1e735a003
Merge in DNS/adguard-home from upd-links-etc to master Squashed commit of the following: commit 49856df394f1a2123a27afdb35047d3b1a49860f Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Aug 2 20:43:10 2022 +0300 all: revert cdn link revert commit 59bbe4bbd300f48674c1a6224a91f9a567d6c79c Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Aug 2 20:40:50 2022 +0300 all: revert static link revert commit fe2acc4a0d6d5ee31cb8dbb0d0e0984c3cd723db Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Aug 2 18:24:02 2022 +0300 all: revert links up in README; imp tools
50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
if [ "$verbose" -gt '1' ]
|
|
then
|
|
set -x
|
|
v_flags='-v'
|
|
x_flags='-x'
|
|
elif [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
v_flags='-v'
|
|
x_flags=''
|
|
else
|
|
set +x
|
|
v_flags=''
|
|
x_flags=''
|
|
fi
|
|
readonly v_flags x_flags
|
|
|
|
set -e -f -u
|
|
|
|
go="${GO:-go}"
|
|
readonly go
|
|
|
|
# TODO(a.garipov): Add goconst?
|
|
|
|
# Reset GOARCH and GOOS to make sure we install the tools for the native
|
|
# architecture even when we're cross-compiling the main binary, and also to
|
|
# prevent the "cannot install cross-compiled binaries when GOBIN is set" error.
|
|
env\
|
|
GOARCH=""\
|
|
GOOS=""\
|
|
GOBIN="${PWD}/bin"\
|
|
"$go" install --modfile=./internal/tools/go.mod\
|
|
$v_flags $x_flags\
|
|
github.com/fzipp/gocyclo/cmd/gocyclo\
|
|
github.com/golangci/misspell/cmd/misspell\
|
|
github.com/gordonklaus/ineffassign\
|
|
github.com/kisielk/errcheck\
|
|
github.com/kyoh86/looppointer/cmd/looppointer\
|
|
github.com/securego/gosec/v2/cmd/gosec\
|
|
golang.org/x/tools/go/analysis/passes/nilness/cmd/nilness\
|
|
golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow\
|
|
honnef.co/go/tools/cmd/staticcheck\
|
|
mvdan.cc/gofumpt\
|
|
mvdan.cc/unparam\
|
|
;
|