diff --git a/process-templates b/process-templates index 8f24d921a..d11a8fe83 100755 --- a/process-templates +++ b/process-templates @@ -5,6 +5,10 @@ from pathlib import Path import os import sys +if len(sys.argv) != 2: + print(f"Usage: {sys.argv[0]} ") + sys.exit(1) + ROOT_DIR = Path(sys.argv[1]) TEMPLATE_PATH_LIST = [ROOT_DIR, "templates/"]