remove dfu subcommand from being parsed by clap

This commit is contained in:
2022-02-05 19:29:20 +01:00
parent bca314c152
commit 8800b22edf
+1 -1
View File
@@ -16,7 +16,7 @@ fn main() {
// Get commandline options.
// Skip the first arg which is the calling application name.
let opt = Opt::parse_from(std::env::args());
let opt = Opt::parse_from(std::env::args().skip(1));
if opt.list_chips {
for vendor in vendor_map() {