Files
podman/dependencies/analyses/dependency-tree.sh
Valentin Rothberg 294ddc4720 dependency/analyses: simplify scripts
Credits to bash wizard @edsantiago for the changes.

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2019-07-16 14:16:16 +02:00

18 lines
506 B
Bash
Executable File

#!/usr/bin/bash
if test "$#" -ne 1; then
echo "invalid arguments: usage: $0 path to package"
exit 1
fi
go list $1/... \
| xargs -d '\n' go list -f '{{ .ImportPath }}: {{ join .Imports ", " }}' \
| awk '{ printf "%s\n\n", $0 }' \
> direct-tree.tmp.$$ && mv -f direct-tree.tmp.$$ direct-tree.txt
go list $1/... \
| xargs -d '\n' go list -f '{{ .ImportPath }}: {{ join .Deps ", " }}' \
| awk '{ printf "%s\n\n", $0 }' \
> transitive-tree.tmp.$$ && mv -f transitive-tree.tmp.$$ transitive-tree.txt