feat: v1.12.3

This commit is contained in:
2025-05-01 23:38:36 +08:00
parent 86489c5d29
commit 3dae02e090
8 changed files with 79 additions and 49 deletions

View File

@@ -19,6 +19,10 @@ impl Command for CommandImpl {
fn run(&self, _arg_matches: &ArgMatches, sub_arg_matches: &ArgMatches) -> CommandError {
let json_output = cmdutil::check_json_output(sub_arg_matches);
if let Err(_) = which::which("swift-secure-enclave-tool") {
failure!("Secure Enclave tool not found.");
}
if json_output {
let mut json = BTreeMap::new();
json.insert("se_supported", seutil::is_support_se());