Skip to content

Commit 39b5cb2

Browse files
ryan-williamsclaude
andcommitted
Fix ENVEOF heredoc delimiter typo in start.py
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent fa5a62c commit 39b5cb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lambda_gha/start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def execute_setup_via_ssh(
461461

462462
# Write env vars to a file on the instance (more reliable than sudo -E)
463463
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"
464+
write_env_cmd = f"cat > /tmp/lambda-gha-scripts/env.sh << 'ENVEOF'\n{env_file_content}\nENVEOF"
465465

466466
print(f"Writing environment file to instance...")
467467
env_result = subprocess.run(

0 commit comments

Comments
 (0)