chore: fix shell scripts lint errors

This commit is contained in:
jo 2022-11-24 21:14:59 +01:00 committed by JuniorJPDJ
commit d47fef0806
23 changed files with 359 additions and 228 deletions

View file

@ -1,10 +1,14 @@
#!/bin/bash -eux
#!/usr/bin/env bash
set -eux
SWAGGER_VERSION="4.1.3"
TARGET_PATH=${TARGET_PATH-"swagger"}
rm -rf $TARGET_PATH /tmp/swagger-ui
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 schema.yml $TARGET_PATH
cp -r api $TARGET_PATH/api
sed -i "s,https://petstore.swagger.io/v2/swagger.json,schema.yml,g" $TARGET_PATH/index.html
mv /tmp/swagger-ui/dist "$TARGET_PATH"
cp schema.yml "$TARGET_PATH"
cp -r api "$TARGET_PATH/api"
sed -i "s,https://petstore.swagger.io/v2/swagger.json,schema.yml,g" "$TARGET_PATH/index.html"