fix(security): tighten paths and output handling

This commit is contained in:
Hunter Bown
2026-05-08 14:13:55 -05:00
parent 4de726abc5
commit 8380784308
13 changed files with 352 additions and 90 deletions
+1 -1
View File
@@ -1088,7 +1088,7 @@ fn run_auth_migrate(store: &mut ConfigStore, secrets: &Secrets, dry_run: bool) -
fn run_config_command(store: &mut ConfigStore, command: ConfigCommand) -> Result<()> {
match command {
ConfigCommand::Get { key } => {
if let Some(value) = store.config.get_value(&key) {
if let Some(value) = store.config.get_display_value(&key) {
println!("{value}");
return Ok(());
}