Skip to content

Commit 718c563

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
fix cmdline help
1 parent 4f20dda commit 718c563

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/WindowsUpdate/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fn main() {
1111

1212
if args.len() < 2 {
1313
eprintln!("Error: Missing operation argument");
14-
eprintln!("Usage: wu_dsc <get|set|test|export>");
14+
eprintln!("Usage: wu_dsc <get|set|export>");
1515
std::process::exit(1);
1616
}
1717

@@ -101,7 +101,7 @@ fn main() {
101101
}
102102
_ => {
103103
eprintln!("Error: Unknown operation '{}'", operation);
104-
eprintln!("Usage: wu_dsc <get|set|test>");
104+
eprintln!("Usage: wu_dsc <get|set|export>");
105105
std::process::exit(1);
106106
}
107107
}

0 commit comments

Comments
 (0)