@unimatrix27/ralph-harness 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -59,7 +59,7 @@ export function renderUserData(input) {
|
|
|
59
59
|
// invoked by `ralph-orchestrate` as its first step).
|
|
60
60
|
const stub = `#!/bin/bash
|
|
61
61
|
set -euo pipefail
|
|
62
|
-
exec > >(tee -a /var/log/ralph
|
|
62
|
+
exec > >(tee -a /var/log/ralph.log) 2>&1
|
|
63
63
|
${exports}
|
|
64
64
|
curl -fsSL https://rpm.nodesource.com/setup_24.x | bash -
|
|
65
65
|
dnf install -y nodejs git jq awscli
|
|
@@ -335,4 +335,7 @@ setup__main() {
|
|
|
335
335
|
setup__write_env_file
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
|
|
338
|
+
# Stdout is already routed to /var/log/ralph.log by the user-data stub's
|
|
339
|
+
# `exec > >(tee -a /var/log/ralph.log) 2>&1`; teeing again here would
|
|
340
|
+
# double-write every line into the cwagent stream.
|
|
341
|
+
setup__main 2>&1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unimatrix27/ralph-harness",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Throwaway-EC2 loop that picks one ready-for-agent GitHub issue, implements it, opens a PR, runs one auto-review pass, then terminates.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|