kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
10 wiersze
386 B
Bash
Executable File
10 wiersze
386 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
SWAGGER_VERSION="3.13.6"
|
|
TARGET_PATH=${TARGET_PATH-"swagger"}
|
|
rm -rf $TARGET_PATH /tmp/swagger-ui
|
|
git clone --branch="v$SWAGGER_VERSION" --depth=1 "https://github.com/swagger-api/swagger-ui.git" /tmp/swagger-ui
|
|
mv /tmp/swagger-ui/dist $TARGET_PATH
|
|
cp swagger.yml $TARGET_PATH
|
|
sed -i "s,http://petstore.swagger.io/v2/swagger.json,swagger.yml,g" $TARGET_PATH/index.html
|