Skip to content

Commit

Permalink
update log
Browse files Browse the repository at this point in the history
  • Loading branch information
CLEMENTINATOR committed Feb 5, 2025
1 parent 5dcf7bc commit 7febc2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/commands/components/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn parse_settings(settings_str: &str) -> Result<HashMap<String, String>, String>
if parts.len() == 2 {
settings_map.insert(parts[0].to_string(), parts[1].to_string());
} else {
return Err(format!("Invalid setting: {}", setting));
return Err(format!("Invalid setting: {}\nPlease use a comma-separated list of settings such as `-s 'key1=value,key2=value2'`", setting));
}
}

Expand Down

0 comments on commit 7febc2e

Please sign in to comment.