File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 2525if ! command -v dot & > /dev/null
2626then
2727 echo " The 'dot' command is not found. This is required to generate SVGs from the Graphviz files."
28- echo " On macOS, you can install it using Homebrew: 'brew install graphviz'"
28+ echo " Installation instructions:"
29+ echo " - On macOS: You can install Graphviz using Homebrew with the command: 'brew install graphviz'"
30+ echo " - On Ubuntu: You can install Graphviz using APT with the command: 'sudo apt-get install graphviz'"
2931 exit 1
3032fi
3133
5052# Get the module paths
5153module_paths=$( ./gradlew -q printModulePaths --no-configuration-cache)
5254
55+ # Ensure the output directory exists
56+ mkdir -p docs/images/graphs/
57+
5358# Function to check and create a README.md for modules which don't have one.
5459check_and_create_readme () {
5560 local module_path=" $1 "
You can’t perform that action at this time.
0 commit comments