This commit is contained in:
nab138
2026-01-29 22:29:41 -05:00
parent c0f02994ec
commit 6fd088eb65
3 changed files with 150 additions and 27 deletions

View File

@@ -40,7 +40,7 @@ async fn main() {
match &account {
Ok(a) => println!("Logged in. {}", a),
Err(e) => eprintln!("Failed to log in to Apple ID: {:?}", e),
Err(e) => panic!("Failed to log in to Apple ID: {:?}", e),
}
let mut account = account.unwrap();
@@ -59,7 +59,7 @@ async fn main() {
.expect("No developer teams available for this account");
let res = dev_session
.list_devices(team, None)
.revoke_development_cert(team, "2655CFC31A258B1B4D7D9FC22E23AEC3", None)
.await
.expect("Failed to list developer devices");