mirror of
https://github.com/enso-org/enso.git
synced 2025-01-08 08:51:50 +03:00
e91df35902
* Add scalafmt configuration * Add docs and issue/PR templates * Update gitignore, add readme and license * Add contributing and code of conduct
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
|