Created
July 11, 2024 16:18
-
-
Save langheran/9d5d1b9dd897f6d2ca082d88af00144a to your computer and use it in GitHub Desktop.
C:\Users\NisimHurst\NDS\scripts\convert_puml2png.bat
This file contains hidden or 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
@echo off | |
REM Ensure PlantUML jar file path is correct | |
set PLANTUML_JAR=C:\Bin\plantuml.jar | |
REM Loop through all .puml files in the current directory | |
for %%f in (*.puml) do ( | |
echo Converting %%f to PNG... | |
java -jar "%PLANTUML_JAR%" %%f | |
) | |
echo Conversion complete! | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment