10 lines
370 B
Python
10 lines
370 B
Python
|
import sys
|
||
|
|
||
|
service_slug = "{{ cookiecutter.__service_slug }}"
|
||
|
component_list_slug = "{{ cookiecutter.__component_list_slug }}"
|
||
|
context_slug = "{{ cookiecutter.__context_slug }}"
|
||
|
for v in (service_slug, component_list_slug, context_slug):
|
||
|
if not v:
|
||
|
print(f"Please answer all prompts with a non-empty string. Aborting and existing 3 ...")
|
||
|
sys.exit(3)
|