From 69ebafb961a116eed4a20fa9a816e16a1bab2cbf Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Sat, 20 Jul 2024 16:34:47 +0200 Subject: [PATCH] fix: apply correct OpenAPI file path This commit ensure that the right file path is used in the OpenAPI spec generator file. --- scripts/gen_client_sdks.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gen_client_sdks.bash b/scripts/gen_client_sdks.bash index 73371ca..4c8ff70 100644 --- a/scripts/gen_client_sdks.bash +++ b/scripts/gen_client_sdks.bash @@ -2,7 +2,7 @@ # A script that generates the Livepeer AI client SDKs for several languages. # The script uses the OpenAPI generator to generate the SDKs. PACKAGE_NAME="livepeer_ai" -SPEC_PATH="../openapi_gateway.json" +SPEC_PATH="openapi_gateway.json" SDKS=("go" "javascript" "python" "ruby" "typescript") OUTPUT_DIR="sdks"