This commit is contained in:
Ahmed Ibrahim
2025-12-15 11:12:25 -08:00
parent b4d69e985f
commit 597ce69188

View File

@@ -1,12 +0,0 @@
use crate::update_action::get_update_action;
pub(crate) fn update_available_nudge() -> String {
match get_update_action() {
Some(action) => {
let command = action.command_str();
format!("Update available. Run `{command}` to update.")
}
None => "Update available. See https://github.com/openai/codex for installation options."
.to_string(),
}
}