jldb/dep-graph.sh

10 lines
112 B
Bash
Executable File

#!/bin/bash
godepgraph \
-s \
-p github.com \
./$1 > .deps.dot &&
xdot .deps.dot
rm .deps.dot