Skip to content

Commit

Permalink
chore: skip monitor v2 in sdk generation
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 committed Nov 5, 2024
1 parent e10a054 commit fbdce07
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/build_twilio_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +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))
if 'twilio_monitor_v2.json' in spec_files:
spec_files.remove('twilio_monitor_v2.json')
generate(spec_folder, spec_files, output_path, language)


Expand Down

0 comments on commit fbdce07

Please sign in to comment.