Skip to content

Commit e7d5255

Browse files
Added directory creation check for cases where mcad=False
1 parent 2a128da commit e7d5255

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/codeflare_sdk/utils/generate_yaml.py

+5
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,11 @@ def _create_oauth_sidecar_object(
619619

620620

621621
def write_components(user_yaml: dict, output_file_name: str):
622+
# Create the directory if it doesn't exist
623+
directory_path = os.path.dirname(output_file_name)
624+
if not os.path.exists(directory_path):
625+
os.makedirs(directory_path)
626+
622627
components = user_yaml.get("spec", "resources")["resources"].get("GenericItems")
623628
open(output_file_name, "w").close()
624629
with open(output_file_name, "a") as outfile:

0 commit comments

Comments
 (0)