mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
11 lines
379 B
Bash
Executable File
11 lines
379 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
|
|
INCLUDES=$(go run scripts/go-workspace/main.go list-submodules --path "${REPO_ROOT}/go.work" --delimiter '/... ' --skip golangci-lint)
|
|
|
|
# ./pkg/... is manually added to cover the root package without including scripts and devenv
|
|
printf './pkg/... %s' "${INCLUDES}" |