Skip to content

Commit c4120a2

Browse files
authored
[CODEX-3595] Remove period when copying highlighted text in iTerm (#4419)
1 parent 618a42a commit c4120a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codex-rs/cli/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ fn format_exit_messages(exit_info: AppExitInfo, color_enabled: bool) -> Vec<Stri
181181
} else {
182182
resume_cmd
183183
};
184-
lines.push(format!("To continue this session, run {command}."));
184+
lines.push(format!("To continue this session, run {command}"));
185185
}
186186

187187
lines
@@ -481,7 +481,7 @@ mod tests {
481481
lines,
482482
vec![
483483
"Token usage: total=2 input=0 output=2".to_string(),
484-
"To continue this session, run codex resume 123e4567-e89b-12d3-a456-426614174000."
484+
"To continue this session, run codex resume 123e4567-e89b-12d3-a456-426614174000"
485485
.to_string(),
486486
]
487487
);

0 commit comments

Comments
 (0)