Skip to content

Commit bcb4040

Browse files
committed
fix: entry in deployments log
The wrong filename was used, causing all entries to have the same filename as the last item processed.
1 parent 46f454e commit bcb4040

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/__snapshots__/index.test.ts.snap

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webapp_deploy/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def deploy(artifact_s3_url, target_s3_url, exclude_pattern):
164164
temp_file.close()
165165
shutil.rmtree(temp_dir)
166166

167-
return [DeployItem(deploy_time, filename) for [i, _, _] in all_files]
167+
return [DeployItem(deploy_time, fname) for [fname, _, _] in all_files]
168168

169169

170170
def fetch_deployment_log(s3_deployments_log):

0 commit comments

Comments
 (0)