mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:40:06 +08:00
21 lines
380 B
Batchfile
21 lines
380 B
Batchfile
set java=%1
|
|
shift
|
|
set jar_path=%1
|
|
shift
|
|
|
|
set puml_src_path=%1
|
|
shift
|
|
set output_dir_path=%1
|
|
shift
|
|
set output_path=%1
|
|
shift
|
|
set save_path=%1
|
|
shift
|
|
set image_type=%1
|
|
shift
|
|
set include_path=%1
|
|
shift
|
|
|
|
%java% -Dapple.awt.UIElement=true -Dplantuml.include.path="%include_path%" -jar "%jar_path%" "%puml_src_path%" -t%image_type% -o "%output_dir_path%"
|
|
copy "%output_path%" "%save_path%"
|