Skip to content
Snippets Groups Projects
Commit 42794f32 authored by Nick Lee's avatar Nick Lee
Browse files

Fix http-save list split

parent da82200b
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ if url_type == 'http-save':
cmd = ['git', 'config', '--global', 'credential.helper', "'cache --timeout=1800'"]
print("Using git credential helper to save your password.")
print("Running %s" % ' '.join(cmd))
subprocess.call(cmd.split())
subprocess.call(cmd)
elif url_type == 'ssh-save':
print("Running ssh-agent and ssh-add to save SSH passphrase.")
subprocess.call('ssh-agent')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment