We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
start.py
1 parent fa5a62c commit 39b5cb2Copy full SHA for 39b5cb2
src/lambda_gha/start.py
@@ -461,7 +461,7 @@ def execute_setup_via_ssh(
461
462
# Write env vars to a file on the instance (more reliable than sudo -E)
463
env_file_content = "\n".join(f'export {k}="{v}"' for k, v in env_vars.items())
464
- write_env_cmd = f"cat > /tmp/lambda-gha-scripts/env.sh << 'ENVEOF'\n{env_file_content}\nENVOF"
+ write_env_cmd = f"cat > /tmp/lambda-gha-scripts/env.sh << 'ENVEOF'\n{env_file_content}\nENVEOF"
465
466
print(f"Writing environment file to instance...")
467
env_result = subprocess.run(
0 commit comments