Skip to content

Commit

Permalink
Fixing TypeError can only join an iterable
Browse files Browse the repository at this point in the history
  • Loading branch information
marcleblanc2 committed Mar 13, 2024
1 parent 5bd8957 commit 645107a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion repo-converter/build/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def clone_svn_repos():
try:
previous_batch_end_revision = subprocess_run(cmd_cfg_git_get_batch_end_revision)[0]
except Exception as exception:
previous_batch_end_revision = ""
previous_batch_end_revision = "1"

if previous_batch_end_revision == last_changed_rev:

Expand Down Expand Up @@ -400,6 +400,10 @@ def clone_svn_repos():
# Initialize the repo
subprocess_run(cmd_run_git_svn_init, password, arg_svn_echo_password)

# Initialize this config with a 0 value
cmd_cfg_git_set_batch_end_revision.append(str(0))
subprocess_run(cmd_cfg_git_set_batch_end_revision)

# Configure the bare clone
# Testing without the bare clone to see if branching works easier
# and because I forget why a bare clone was needed
Expand Down

0 comments on commit 645107a

Please sign in to comment.