-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add the diagram-rendering bash script
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
# Copilot generated script to render diagrams as SVG | ||
|
||
# Set the directory path | ||
DIR="team/governance/diagrams/" | ||
SITE="_site/" | ||
|
||
|
||
# Loop through each dot file in the subdirectory | ||
for dotfile in "$DIR"*.dot; do | ||
# Get the base name without extension | ||
base_name=$(basename "$dotfile" .dot) | ||
dir_path="_site/${DIR}" | ||
mkdir -p $dir_path | ||
output="$dir_path$base_name.svg" | ||
|
||
# Render the dot file to SVG | ||
dot -Tsvg "$dotfile" -o $output | ||
|
||
# Print a success message | ||
echo "Rendered $dotfile to $output" | ||
done | ||
|
||
|
||
|