Skip to content

Commit eaa528a

Browse files
committed
fix: missing platform gitops repo files
1 parent 4dc5a9c commit eaa528a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tools/cli/services/platform_template_manager.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ def build_repo_from_template(git_provider: GitProviders):
115115

116116
shutil.copytree(temp_folder / "platform" / "terraform", LOCAL_GITOPS_FOLDER / "terraform")
117117
shutil.copytree(temp_folder / "platform" / "gitops-pipelines", LOCAL_GITOPS_FOLDER / "gitops-pipelines")
118+
for src_file in Path(temp_folder / "platform").glob('*.*'):
119+
shutil.copy(src_file, LOCAL_GITOPS_FOLDER)
118120

119121
# drop all non template readme files
120122
for root, dirs, files in os.walk(LOCAL_GITOPS_FOLDER):

0 commit comments

Comments
 (0)