Skip to content

Commit

Permalink
Merge branch 'main' into fix_content_type_java
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 authored Sep 5, 2024
2 parents ffb0c4b + 88ab8cb commit 7c1a3ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/build_twilio_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def build(openapi_spec_path: str, output_path: str, language: str) -> None:
else:
spec_folder = openapi_spec_path
spec_files = sorted(os.listdir(spec_folder))
spec_files.remove('twilio_content_v1.json')
if 'twilio_content_v1.json' in spec_files:
spec_files.remove('twilio_content_v1.json')
generate(spec_folder, spec_files, output_path, language)


Expand Down

0 comments on commit 7c1a3ac

Please sign in to comment.