13 lines
180 B
Bash
Executable file
13 lines
180 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
rm -fr out
|
|
mkdir out
|
|
|
|
openapi-generate-html \
|
|
--input petstore.yaml \
|
|
--output out/docs.html \
|
|
--theme dark \
|
|
--ui swagger \
|
|
"$@"
|