We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be5b934 commit 39e9417Copy full SHA for 39e9417
1 file changed
gitopscli/commands/create_preview.py
@@ -72,9 +72,6 @@ def create_preview_command(
72
logging.info("New folder for preview: %s", new_preview_folder_name)
73
branch_preview_env_already_exist = os.path.exists(root_git.get_full_file_path(new_preview_folder_name))
74
logging.info("Is preview env already existing for branch? %s", branch_preview_env_already_exist)
75
- for dirpath, filenames in os.walk("."):
76
- for f in filenames:
77
- logging.info(os.path.join(dirpath, f))
78
if not branch_preview_env_already_exist:
79
__create_new_preview_env(branch, new_preview_folder_name, preview_template_folder_name, root_git)
80
new_image_tag = apps_git.get_last_commit_hash()
0 commit comments