2022-06-04 23:36:18 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
service_slug = "{{ cookiecutter.__service_slug }}"
|
|
|
|
component_list_slug = "{{ cookiecutter.__component_list_slug }}"
|
2023-06-21 00:35:19 +02:00
|
|
|
for v in (service_slug, component_list_slug):
|
2022-06-04 23:36:18 +02:00
|
|
|
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 ...")
|
2022-06-04 23:36:18 +02:00
|
|
|
sys.exit(3)
|