Fix illegal environment variable name

This commit is contained in:
Joshua Boniface 2021-10-31 02:19:33 -04:00
parent 7041eb7b85
commit e9759a08c2
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ def clone_repository(clone_url, config):
print(f"Cloning repository...")
if config['ssh_key'] is not None:
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')