We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d67be commit 1344248Copy full SHA for 1344248
soar-cli/src/utils.rs
@@ -80,7 +80,10 @@ pub fn select_package_interactively<T: PackageExt>(
80
81
pub fn has_no_desktop_integration(repo_name: &str, notes: Option<&[String]>) -> bool {
82
!get_config().has_desktop_integration(repo_name)
83
- || notes.is_some_and(|all| all.iter().any(|note| note == "NO_DESKTOP_INTEGRATION"))
+ || notes.is_some_and(|all| {
84
+ all.iter()
85
+ .any(|note| note.contains("NO_DESKTOP_INTEGRATION"))
86
+ })
87
}
88
89
pub fn pretty_package_size(ghcr_size: Option<u64>, size: Option<u64>) -> String {
0 commit comments