Specify chunker stack branches #410

Merged
telackey merged 2 commits from dboreham/specify-chunker-stack-branches into main 2023-05-25 02:00:42 +00:00
Showing only changes of commit bcc283e986 - Show all commits

View File

@ -121,9 +121,8 @@ def process_repo(verbose, quiet, dry_run, pull, check_only, git_ssh, dev_root_pa
else:
branch_to_checkout = repo_branch
print(f"branch_to_checkout: {branch_to_checkout}")
if branch_to_checkout:
if current_repo_branch and (current_repo_branch != branch_to_checkout):
if current_repo_branch is None or (current_repo_branch and (current_repo_branch != branch_to_checkout)):
if not quiet:
print(f"switching to branch {branch_to_checkout} in repo {repo_path}")
git_repo = git.Repo(full_filesystem_repo_path)