Skip to content

Commit 3eea857

Browse files
committed
Fix Unity Editor startup command to ensure proper execution and log streaming
1 parent 889609b commit 3eea857

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
echo "Starting Unity Editor with startup method execution..."
6262
6363
# Start Unity with executeMethod (without -quit to keep it running)
64-
docker exec -d unity-editor bash -c "unity-editor \
64+
docker exec unity-editor bash -c "unity-editor \
6565
-projectPath /project \
6666
-batchmode \
6767
-nographics \
@@ -71,9 +71,6 @@ jobs:
7171
echo "Unity Editor started, streaming logs until method completes..."
7272
echo "================================================"
7373
74-
docker logs -f unity-editor &
75-
LOGS_PID=$!
76-
7774
# Follow logs and look for completion indicators
7875
timeout=600 # 10 minutes timeout for method execution
7976
elapsed=0

0 commit comments

Comments
 (0)