This repository has been archived on 2023-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
notificationarr/bin/install_tools.sh
Dawid Wysokiński 79cc49d98e
All checks were successful
continuous-integration/drone/push Build is passing
feat: add sonarr support (#5)
Reviewed-on: #5
2022-07-18 04:57:13 +00:00

12 lines
183 B
Bash
Executable File

#!/bin/sh
set -o errexit -eo pipefail
cd ./internal/tools
go install \
github.com/golangci/golangci-lint/cmd/golangci-lint \
github.com/maxbrunsfeld/counterfeiter/v6
cd ../..