mirror of
https://github.com/logos-storage/logos-storage-py-api-client.git
synced 2026-01-02 13:33:11 +00:00
16 lines
454 B
Bash
Executable File
16 lines
454 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "No version supplied"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
openapi-generator-cli generate \
|
|
-t .openapi-generator/templates \
|
|
-g python \
|
|
-i codex.yaml \
|
|
--additional-properties="packageName=codex_api_client,projectName=Codex\ API\ Client,packageUrl=https://github.com/codex-storage/py-codex-api-client,packageVersion=$1" \
|
|
--git-repo-id py-codex-api-client --git-user-id codex-storage \
|
|
--http-user-agent py_codex_api_client
|