From 0802fd44ed11283f15900d2993fc495acf1bed01 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 9 May 2026 14:44:26 +0900 Subject: refactor(commands): consolidate get_platform_requirement_filter into shared module Removes the per-command duplicate implementations of get_platform_requirement_filter from dump_autoload and reinstall, and lifts a single canonical version into commands.rs. --- crates/mozart/src/commands/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/mozart/src/commands/status.rs') diff --git a/crates/mozart/src/commands/status.rs b/crates/mozart/src/commands/status.rs index 30d7396..b6802a3 100644 --- a/crates/mozart/src/commands/status.rs +++ b/crates/mozart/src/commands/status.rs @@ -37,7 +37,7 @@ pub async fn execute( let mut unpushed_changes: IndexMap = IndexMap::new(); let mut vcs_version_changes: IndexMap = IndexMap::new(); - for package in installed_repo.canonical_packages() { + for package in installed_repo.get_canonical_packages() { let Some(downloader) = dm.for_package(package) else { continue; }; -- cgit v1.3.1