File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -180,10 +180,10 @@ jobs:
180
180
echo "${{ steps.test-action.outputs.path }}"
181
181
echo ""
182
182
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)
184
184
echo ""
185
185
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)
187
187
188
188
test-debug-noagent :
189
189
name : " Test: Basic (No Agent)"
@@ -474,10 +474,10 @@ jobs:
474
474
echo "${{ steps.test-action.outputs.path }}"
475
475
echo ""
476
476
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)
478
478
echo ""
479
479
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)
481
481
482
482
- name : " Test: Agent Running"
483
483
run : |
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ async function spawnDirect(): Promise<number> {
277
277
core . debug ( 'Starting Buildless Agent via background spawn' )
278
278
try {
279
279
const outpath = tempPathForOs ( 'buildless-agent.out' )
280
- const errpath = tempPathForOs ( 'buildless-agent.out ' )
280
+ const errpath = tempPathForOs ( 'buildless-agent.err ' )
281
281
core . debug ( `Agent outfiles: out=${ outpath } err=${ errpath } ` )
282
282
283
283
const out = fs . openSync ( outpath , 'a' )
You can’t perform that action at this time.
0 commit comments