Files
adyen-postman/runDocker.sh
julien Lengrand-Lambert f2214c134a Setup with scripts to generate, and first actual generation (#1)
* Sets up project
* Creates iterative script to run in Docker image
2023-02-15 11:52:23 +01:00

10 lines
255 B
Bash
Executable File

#!/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/generateAll.sh gcatanese/openapi-generator-postman-v2
# clean up
rm -rf adyen-openapi