Skip to content

Commit

Permalink
chore: ignore content_v1 spec for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sbansla committed Aug 22, 2024
1 parent 01b678b commit ce97b78
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/build_twilio_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
generateForLanguages = {
'twilio_iam_organizations.json' : ['java']
}

ignoreFiles = {
'twilio_content_v1.json'
}
CLEANUP_IMPORT_LANGUAGES = ['java', 'php']
REMOVE_DUPLICATE_IMPORT_LANGUAGES = ['node']
CONFIG_FOLDER = 'tmp'
Expand All @@ -32,7 +36,7 @@ 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')
generate(spec_folder, spec_files, output_path, language)


Expand Down

0 comments on commit ce97b78

Please sign in to comment.