mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 04:42:23 +08:00
8 lines
142 B
Bash
Executable file
8 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
|