feat: v1.1.2, support runts sign

This commit is contained in:
2025-01-24 00:48:57 +08:00
parent 35a7972673
commit 47677f4705
8 changed files with 45 additions and 6 deletions

View File

@@ -7,8 +7,9 @@ pub fn verify_script(file: &str, skip_verify: bool) {
}
match Script::verify_script_file_with_system_key_map(file) {
Ok(true) => {
debugging!("Script {file} verification success");
// Verify file ok!
debugging!("Script {file} verification success");
return;
}
Ok(false) => {
failure_and_exit!("Verify script {file} failed, no signature or bad signature");