Skip to content

Commit

Permalink
fix join
Browse files Browse the repository at this point in the history
  • Loading branch information
dummygithubaccount committed Jan 9, 2024
1 parent c03468a commit 7ba036a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/scm_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ def get_changed_files(
target_last_commit = repo.commit(target_branch)
diffs=target_last_commit.diff()
for diff in diffs:
changed_files.append("/".join(workdir,diff.b_path))
changed_files.append("/".join([workdir,diff.b_path]))
repo.git.reset("--hard", current_sha)
repo.git.checkout(source_branch)
repo.git.branch("-D", temp_branch)
Expand Down

0 comments on commit 7ba036a

Please sign in to comment.