mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 08:41:40 +03:00
8 lines
244 B
Bash
Executable File
8 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SELF="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
ROOT=$SELF/../..
|
|
|
|
find $ROOT/core/src -name "*.hs" -print | xargs graphmod -p > $SELF/dist/overview.dot
|
|
dot -Tpng -Gdpi=600 $SELF/dist/overview.dot > $SELF/dist/overview.png
|