We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93c29a commit fbb03c6Copy full SHA for fbb03c6
crates/google-workspace-cli/src/auth_commands.rs
@@ -811,7 +811,7 @@ fn should_run_interactive_scope_picker(
811
services_filter: Option<&HashSet<String>>,
812
) -> bool {
813
matches!(scope_mode, ScopeMode::Default)
814
- && !services_filter.is_some_and(|services| !services.is_empty())
+ && services_filter.is_none_or(|services| services.is_empty())
815
}
816
817
/// Check if a scope URL belongs to one of the specified services.
0 commit comments