1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-29 09:28:40 +08:00
NeoNetwork/scripts/makegraph.sh

9 lines
140 B
Bash
Raw Normal View History

2019-10-31 11:09:08 +08:00
#!/bin/sh
set -xe
2020-07-21 02:06:15 +08:00
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