mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:50:03 +08:00
14 lines
351 B
Bash
14 lines
351 B
Bash
#!/usr/bin/env bash
|
|
java=${1}
|
|
jar_path=${2}
|
|
|
|
puml_src_path=${3}
|
|
output_dir_path=${4}
|
|
output_path=${5}
|
|
save_path=${6}
|
|
image_type=${7}
|
|
include_path=${8}
|
|
|
|
$java -Dapple.awt.UIElement=true -Djava.awt.headless=true -Dplantuml.include.path="$include_path" -jar "$jar_path" "$puml_src_path" -t$image_type -o "$output_dir_path"
|
|
cp "$output_path" "$save_path"
|