Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Recent highlights:
npm install -g @opencoven/coven
```

Then open a new terminal and run `coven` or `coven tui`.
Then open a new terminal and run `coven` or `coven tui`. The lower-level `coven-code` binary and `coven-cave` alias are also installed for compatibility.

### Upgrade

Expand Down
3 changes: 1 addition & 2 deletions src-rust/crates/core/src/team_memory_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,7 @@ impl TeamMemorySync {
// not leak the credential.
let secrets = scan_for_secrets(&content);
if !secrets.is_empty() {
let labels: Vec<&str> =
secrets.iter().map(|m| m.label.as_str()).collect();
let labels: Vec<&str> = secrets.iter().map(|m| m.label.as_str()).collect();
warn!(
"Blocking team memory file {:?} from sync: detected {} \
({} secret pattern(s))",
Expand Down