Check for null

This commit is contained in:
Thomas E Lackey 2024-02-02 15:03:53 -06:00
parent 2231857ef3
commit a5ce189468

View File

@ -196,7 +196,7 @@ def file_hash(filename):
def determine_base_container(clone_dir, app_type="webapp"):
if not app_type.startswith("webapp"):
if not app_type or not app_type.startswith("webapp"):
raise Exception(f"Unsupported app_type {app_type}")
base_container = "cerc/webapp-base"