1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-05-17 12:51:45 +08:00
NeoNetwork/scripts/makegraph.sh
2020-07-26 20:48:05 +08:00

9 lines
140 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