10 lines
112 B
Bash
10 lines
112 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
godepgraph \
|
||
|
-s \
|
||
|
-p github.com \
|
||
|
./$1 > .deps.dot &&
|
||
|
xdot .deps.dot
|
||
|
|
||
|
rm .deps.dot
|