mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 18:22:26 +08:00
8 lines
140 B
Bash
Executable file
8 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
|