mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:50:03 +08:00
12 lines
283 B
Batchfile
12 lines
283 B
Batchfile
|
set java_path=%1
|
||
|
set jar_path=%2
|
||
|
|
||
|
set puml_src_path=%3
|
||
|
set output_dir_path=%4
|
||
|
set output_path=%5
|
||
|
set save_path=%6
|
||
|
set image_type=%7
|
||
|
|
||
|
"%java_path%" -Dapple.awt.UIElement=true -jar "%jar_path%" "%puml_src_path%" -t%image_type% -o "%output_dir_path%"
|
||
|
copy "%output_path%" "%save_path%"
|