mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-26 12:15:20 +01:00
Fix: sed compatible with mac os env
sed -i need explicit extention on mac, but linux is optinoal. so for developer need a compatible request on macos
This commit is contained in:
parent
605c209bca
commit
6c6a694668
@ -9,10 +9,10 @@ wget https://github.com/swagger-api/swagger-ui/archive/v2.1.4.tar.gz -O swagger.
|
|||||||
echo "Untarring Swagger UI package to the static file path..."
|
echo "Untarring Swagger UI package to the static file path..."
|
||||||
tar -C ../static/vendors -zxf swagger.tar.gz swagger-ui-2.1.4/dist
|
tar -C ../static/vendors -zxf swagger.tar.gz swagger-ui-2.1.4/dist
|
||||||
echo "Executing some processes..."
|
echo "Executing some processes..."
|
||||||
sed -i 's/http:\/\/petstore\.swagger\.io\/v2\/swagger\.json/'$SCHEME':\/\/'$SERVER_IP'\/static\/resources\/yaml\/swagger\.yaml/g' \
|
sed -i.bak 's/http:\/\/petstore\.swagger\.io\/v2\/swagger\.json/'$SCHEME':\/\/'$SERVER_IP'\/static\/resources\/yaml\/swagger\.yaml/g' \
|
||||||
../static/vendors/swagger-ui-2.1.4/dist/index.html
|
../static/vendors/swagger-ui-2.1.4/dist/index.html
|
||||||
mkdir -p ../static/resources/yaml
|
mkdir -p ../static/resources/yaml
|
||||||
cp swagger.yaml ../static/resources/yaml
|
cp swagger.yaml ../static/resources/yaml
|
||||||
sed -i 's/host: localhost/host: '$SERVER_IP'/g' ../static/resources/yaml/swagger.yaml
|
sed -i.bak 's/host: localhost/host: '$SERVER_IP'/g' ../static/resources/yaml/swagger.yaml
|
||||||
sed -i 's/ \- http$/ \- '$SCHEME'/g' ../static/resources/yaml/swagger.yaml
|
sed -i.bak 's/ \- http$/ \- '$SCHEME'/g' ../static/resources/yaml/swagger.yaml
|
||||||
echo "Finish preparation for the Swagger UI."
|
echo "Finish preparation for the Swagger UI."
|
||||||
|
Loading…
Reference in New Issue
Block a user