From e9759a08c2d6d661af7d4f3401f3abfb34f046d5 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 31 Oct 2021 02:19:33 -0400 Subject: [PATCH] Fix illegal environment variable name --- bbuilder/lib/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbuilder/lib/worker.py b/bbuilder/lib/worker.py index 5e799e5..9f1dac9 100644 --- a/bbuilder/lib/worker.py +++ b/bbuilder/lib/worker.py @@ -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')