Skip to content

Commit

Permalink
update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston committed Jan 2, 2025
1 parent 9b0b956 commit bb4a3fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ fn dissolve_subcommand(matches: &clap::ArgMatches) -> Result<(), CliError> {

fn attach_camera_subcommand(matches: &clap::ArgMatches) -> Result<(), CliError> {
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
return CliError::new("only Linux and Mac supported", 1);
return CliError::new("only Linux, Mac, and Windows supported", 1);

if matches.values_of("id_prefix").is_some()
&& matches.values_of("attach_camera_crop_config").is_some()
Expand Down

0 comments on commit bb4a3fd

Please sign in to comment.