mirror of
https://github.com/gcatanese/adyen-postman.git
synced 2026-03-10 08:01:18 +00:00
10 lines
267 B
Bash
10 lines
267 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -d /adyen-openapi ]; then
|
|
git clone https://github.com/Adyen/adyen-openapi.git
|
|
fi
|
|
|
|
docker run --volume $(pwd):/usr/src/app --entrypoint /usr/src/app/generateSingleFile.sh gcatanese/openapi-generator-postman-v2 $1
|
|
|
|
# clean up
|
|
rm -rf adyen-openapi |