aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/home_command.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-20 01:16:50 +0900
committernsfisis <nsfisis@gmail.com>2026-06-20 02:22:41 +0900
commitefec43b3b8827820cf35fe1b73d8e33f5fe84eb4 (patch)
treea62bbba72324de48be5f8e689559f8d9e288fc61 /crates/shirabe/src/command/home_command.rs
parentcac18ef73a39b4ac41fa4d6ccb753804d4c42cb7 (diff)
downloadphp-shirabe-efec43b3b8827820cf35fe1b73d8e33f5fe84eb4.tar.gz
php-shirabe-efec43b3b8827820cf35fe1b73d8e33f5fe84eb4.tar.zst
php-shirabe-efec43b3b8827820cf35fe1b73d8e33f5fe84eb4.zip
refactor: auto-fix clippy warnings
Diffstat (limited to 'crates/shirabe/src/command/home_command.rs')
-rw-r--r--crates/shirabe/src/command/home_command.rs20
1 files changed, 13 insertions, 7 deletions
diff --git a/crates/shirabe/src/command/home_command.rs b/crates/shirabe/src/command/home_command.rs
index 0ac7483..1620205 100644
--- a/crates/shirabe/src/command/home_command.rs
+++ b/crates/shirabe/src/command/home_command.rs
@@ -35,6 +35,12 @@ pub struct HomeCommand {
base_command_data: BaseCommandData,
}
+impl Default for HomeCommand {
+ fn default() -> Self {
+ Self::new()
+ }
+}
+
impl HomeCommand {
pub fn new() -> Self {
let mut command = HomeCommand {
@@ -57,7 +63,7 @@ impl HomeCommand {
.get("source")
.cloned()
.or_else(|| package.get_source_url().map(|s| s.to_string()));
- if url.as_deref().map_or(true, |s| s.is_empty()) || show_homepage {
+ if url.as_deref().is_none_or(|s| s.is_empty()) || show_homepage {
url = package.get_homepage().map(|s| s.to_string());
}
@@ -224,13 +230,13 @@ impl Command for HomeCommand {
let mut package_exists = false;
'repos: for repo in &repos {
- for package in repo.find_packages(&package_name, None)? {
+ for package in repo.find_packages(package_name, None)? {
package_exists = true;
- if let Some(complete_pkg) = package.as_complete() {
- if self.handle_package(complete_pkg, show_homepage, show_only) {
- handled = true;
- break 'repos;
- }
+ if let Some(complete_pkg) = package.as_complete()
+ && self.handle_package(complete_pkg, show_homepage, show_only)
+ {
+ handled = true;
+ break 'repos;
}
}
}