Skip to content

Commit

Permalink
fix(search): allow empty search (#1866)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellie committed Mar 12, 2024
1 parent 3368d2f commit 02d79fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atuin/src/command/client/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl Cmd {
.map(std::string::ToString::to_string)
.collect()
} else {
return Err(eyre!("please specify search query via args or ATUIN_QUERY"));
vec![]
};

if (self.delete_it_all || self.delete) && self.limit.is_some() {
Expand Down

0 comments on commit 02d79fe

Please sign in to comment.