9 lines
304 B
Python
Raw Normal View History

import sys
service_slug = "{{ cookiecutter.__service_slug }}"
component_list_slug = "{{ cookiecutter.__component_list_slug }}"
for v in (service_slug, component_list_slug):
if not v:
2023-06-14 22:07:45 +02:00
print(f"Please answer all prompts with a non-empty string. Aborting and exiting 3 ...")
sys.exit(3)