Skip to content

Commit

Permalink
fix wrong log
Browse files Browse the repository at this point in the history
  • Loading branch information
CLEMENTINATOR committed Feb 5, 2025
1 parent 32a5f24 commit 5dcf7bc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/cli/src/commands/components/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ fn parse_settings(settings_str: &str) -> Result<HashMap<String, String>, String>

async fn test_data_collection_component(component_path: &str, opts: Options) -> anyhow::Result<()> {
if !std::path::Path::new(component_path).exists() {
return Err(anyhow::anyhow!(
"Wasm file not found, please run `edgee component build` first.",
));
return Err(anyhow::anyhow!("Output path not found in manifest file.",));
}

let config = ComponentsConfiguration {
Expand Down

0 comments on commit 5dcf7bc

Please sign in to comment.