Move port forwarding scripts into provider folders, unify call and fix export syntax of environment variables

This commit is contained in:
Kristian Haugene
2020-08-22 15:24:12 +02:00
parent f8fa45e386
commit f5a305bb8e
5 changed files with 6 additions and 18 deletions

View File

@@ -37,7 +37,7 @@ for env_var in os.environ:
with open(args.env_var_script_file, 'w') as script_file:
for var_name, var_value in variables_to_persist.items():
script_file.write(
'export {env_var} = {env_var_value}\n'.format(
'export {env_var}={env_var_value}\n'.format(
env_var=var_name,
env_var_value=var_value,
),