1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-05-17 14:11:46 +08:00
NeoNetwork/.scripts/makegraph.sh

9 lines
142 B
Bash
Raw Normal View History

2019-10-31 11:09:08 +08:00
#!/bin/sh
set -xe
if which dot 2>&1 > /dev/null ; then
2020-04-22 20:49:25 +08:00
dot -T svg nodes.dot -o nodes.svg
2019-10-31 11:09:08 +08:00
else
echo 'You need to install graphviz first'
fi