From 8c235ee7af438bbee584f56d9d822d4b74eae178 Mon Sep 17 00:00:00 2001 From: xj Date: Sun, 1 Mar 2026 03:11:44 -0800 Subject: [PATCH] fix(ci): satisfy lint gate and dedupe manifest validation --- src/plugins/manifest.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/plugins/manifest.rs b/src/plugins/manifest.rs index 0d718ffcc..ea0f80c92 100644 --- a/src/plugins/manifest.rs +++ b/src/plugins/manifest.rs @@ -150,9 +150,6 @@ pub fn validate_manifest(manifest: &PluginManifest) -> anyhow::Result<()> { if manifest.module_path.trim().is_empty() { anyhow::bail!("plugin module_path cannot be empty"); } - if manifest.module_path.trim().is_empty() { - anyhow::bail!("plugin module_path cannot be empty"); - } let mut declared_wit_packages = HashSet::new(); for wit_pkg in &manifest.wit_packages { let (package, major) = parse_wit_package_version(wit_pkg)?;