Fix: Use qualification
This commit is contained in:
parent
207346bea0
commit
51b9b5c0db
8 changed files with 8 additions and 8 deletions
|
@ -79,7 +79,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-annotation", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-annotation", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -98,7 +98,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-store", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-store", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -106,7 +106,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-tag", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-tag", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,7 +86,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-diary", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-diary", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -77,7 +77,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-log", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-log", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -74,7 +74,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-mail", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-mail", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -86,7 +86,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-notes", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-notes", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -71,7 +71,7 @@ fn main() {
|
||||||
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
|
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap(1)
|
.map_err_trace_exit_unwrap(1)
|
||||||
.code()
|
.code()
|
||||||
.map(std::process::exit);
|
.map(::std::process::exit);
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
warn!("No command");
|
warn!("No command");
|
||||||
|
|
Loading…
Reference in a new issue