1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-27 02:48:42 +08:00
NeoNetwork/.scripts/makegraph.sh
2020-07-21 00:19:10 +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