mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
12 lines
243 B
Bash
Executable File
12 lines
243 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
DELIMITER="/...
|
|
"
|
|
|
|
REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
|
|
go run scripts/go-workspace/main.go list-submodules --path "${REPO_ROOT}/go.work" --delimiter "${DELIMITER}"
|