Skip to content

Commit

Permalink
Merge pull request #104 from dustymabe/dusty-fix-importer
Browse files Browse the repository at this point in the history
coreos-ostree-importer: fix more variable bugs
  • Loading branch information
dustymabe authored Apr 22, 2020
2 parents cb185c2 + b5d71f9 commit e4d7735
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions coreos-ostree-importer/coreos_ostree_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,11 @@ def process(self, message: fedora_messaging.api.Message):
# sometimes we do multiple builds for a stream (which get imported
# into the compose repo) before we actually do a release.
if target_repo != "compose" and has_parent_commit and branch_exists:
parent = ostree_get_parent_commit(repo=srcrepo, commit=commit)
assert_branch_points_to_commit(repo=dstrepo, branch=branch, commit=parent)
parent = ostree_get_parent_commit(repo=source_repo_path,
commit=ostree_checksum)
assert_branch_points_to_commit(repo=target_repo_path,
branch=ostree_ref,
commit=parent)

# Import the commit into the target repo
ostree_pull_local(
Expand Down

0 comments on commit e4d7735

Please sign in to comment.