1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-18 20:48:41 +08:00
NeoNetwork/scripts/makegraph.sh
2020-04-26 11:10:48 +08:00

9 lines
142 B
Bash
Executable file

#!/bin/sh
set -xe
if which dot 2>&1 > /dev/null ; then
dot -T svg nodes.dot -o nodes.svg
else
echo 'You need to install graphviz first'
fi