Skip to content

Commit fe83041

Browse files
fix: redirect session resumption message to stderr in Copilot CLI script for better handling
1 parent 2f65293 commit fe83041

File tree

1 file changed

+1
-1
lines changed
  • registry/coder-labs/modules/copilot-cli/scripts

1 file changed

+1
-1
lines changed

registry/coder-labs/modules/copilot-cli/scripts/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ check_existing_session() {
8181
session_id=$(basename "$latest_session_file" | sed 's/session_\(.*\)_[0-9]*.json/\1/')
8282

8383
if [ -n "$session_id" ]; then
84-
echo "Found existing Copilot CLI sessions. Will resume latest: $session_id"
84+
echo "Found existing Copilot CLI sessions. Will resume latest: $session_id" >&2
8585
echo "$session_id"
8686
return 0
8787
fi

0 commit comments

Comments
 (0)