Skip to content

Commit

Permalink
Fixing echo password bug
Browse files Browse the repository at this point in the history
  • Loading branch information
marcleblanc2 committed Feb 19, 2024
1 parent a9946c0 commit b5b46fd
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 @@ -305,7 +305,7 @@ def clone_svn_repos():
arg_svn_non_interactive = [ "--non-interactive" ] # Do not prompt, just fail if the command doesn't work, not supported by all commands
arg_svn_username = [ "--username", username ]
arg_svn_password = [ "--password", password ] # Only used for direct `svn` command
arg_svn_echo_password = [ "echo", password, "|" ] # Used for git svn commands
arg_svn_echo_password = [ "echo", f"\"{password}\"", "|" ] # Used for git svn commands
arg_svn_repo_code_root = [ svn_repo_code_root ]
arg_git_cfg = [ "git", "-C", repo_path, "config" ]
arg_git_svn = [ "git", "-C", repo_path, "svn" ]
Expand Down

0 comments on commit b5b46fd

Please sign in to comment.