File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -691,11 +691,11 @@ def clean_and_build(self, template_path):
691691 os .path .basename (template_path ),
692692 "--cached" ,
693693 ]
694-
694+
695695 # Only add --parallel if no idp_common dependencies to prevent race conditions
696696 if not has_idp_common_deps :
697697 cmd .append ("--parallel" )
698-
698+
699699 if self .use_container_flag and self .use_container_flag .strip ():
700700 cmd .append (self .use_container_flag )
701701
@@ -712,14 +712,14 @@ def clean_and_build(self, template_path):
712712 def _check_template_for_idp_common_deps (self , template_path ):
713713 """Check if a template has Lambda functions with idp_common dependencies."""
714714 template_dir = Path (template_path ).parent
715-
715+
716716 # For main template, check src/lambda directory
717717 if template_path == "template.yaml" :
718718 src_dir = Path ("src/lambda" )
719719 else :
720720 # For pattern/option templates, check src directory
721721 src_dir = template_dir / "src"
722-
722+
723723 if src_dir .exists ():
724724 for func_dir in src_dir .iterdir ():
725725 if func_dir .is_dir ():
You can’t perform that action at this time.
0 commit comments