Skip to content

Commit

Permalink
Fix git config error: cannot overwrite multiple values with a single …
Browse files Browse the repository at this point in the history
…value
  • Loading branch information
marcleblanc2 committed Mar 13, 2024
1 parent 6b48e80 commit e0f79b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo-converter/build/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def clone_svn_repos():
arg_git = [ "git", "-C", repo_path ]
arg_git_cfg = arg_git + [ "config" ]
arg_git_svn = arg_git + [ "svn" ]
arg_batch_end_revision = [ f"{git_config_namespace}.batch-end-revision" ]
arg_batch_end_revision = [ "--replace-all", f"{git_config_namespace}.batch-end-revision" ]

## Define commands
cmd_run_svn_info = [ "svn", "info" ] + arg_svn_repo_code_root + arg_svn_non_interactive
Expand Down

0 comments on commit e0f79b3

Please sign in to comment.