Fix illegal environment variable name
This commit is contained in:
parent
7041eb7b85
commit
e9759a08c2
|
@ -99,7 +99,7 @@ def clone_repository(clone_url, config):
|
||||||
print(f"Cloning repository...")
|
print(f"Cloning repository...")
|
||||||
if config['ssh_key'] is not None:
|
if config['ssh_key'] is not None:
|
||||||
ssh_key_file = config['ssh_key']
|
ssh_key_file = config['ssh_key']
|
||||||
os.environ['GIT_SSH_COMMAND='] = f'ssh -i {ssh_key_file} -o IdentitiesOnly=yes'
|
os.environ['GIT_SSH_COMMAND'] = f'ssh -i {ssh_key_file} -o IdentitiesOnly=yes'
|
||||||
|
|
||||||
os.system(f'git clone {clone_url} repo')
|
os.system(f'git clone {clone_url} repo')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue