Skip to content

Commit 726ed3a

Browse files
committed
fix: general fixes, seal for bisect
Signed-off-by: Sam Gammon <[email protected]>
1 parent b13406d commit 726ed3a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ jobs:
180180
echo "${{ steps.test-action.outputs.path }}"
181181
echo ""
182182
echo "Agent status:"
183-
buildless agent status || $(echo "Failed to check agent status" && exit 1)
183+
buildless agent status || (echo "Failed to check agent status" && exit 1)
184184
echo ""
185185
echo "Agent output:"
186-
cat /var/tmp/buildless-agent.out || $(echo "Failed to read agent output" && exit 1)
186+
cat /var/tmp/buildless-agent.out || (echo "Failed to read agent output" && exit 1)
187187
188188
test-debug-noagent:
189189
name: "Test: Basic (No Agent)"
@@ -474,10 +474,10 @@ jobs:
474474
echo "${{ steps.test-action.outputs.path }}"
475475
echo ""
476476
echo "Agent status:"
477-
buildless agent status || $(echo "Failed to check agent status" && exit 1)
477+
buildless agent status || (echo "Failed to check agent status" && exit 1)
478478
echo ""
479479
echo "Agent output:"
480-
cat /var/tmp/buildless-agent.out || $(echo "Failed to read agent output" && exit 1)
480+
cat /var/tmp/buildless-agent.out || (echo "Failed to read agent output" && exit 1)
481481
482482
- name: "Test: Agent Running"
483483
run: |

src/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ async function spawnDirect(): Promise<number> {
277277
core.debug('Starting Buildless Agent via background spawn')
278278
try {
279279
const outpath = tempPathForOs('buildless-agent.out')
280-
const errpath = tempPathForOs('buildless-agent.out')
280+
const errpath = tempPathForOs('buildless-agent.err')
281281
core.debug(`Agent outfiles: out=${outpath} err=${errpath}`)
282282

283283
const out = fs.openSync(outpath, 'a')

0 commit comments

Comments
 (0)