Keep scaffolding apple account

This commit is contained in:
nab138
2026-01-17 09:25:00 -05:00
parent d97e4b95d0
commit f4687ac3be
5 changed files with 77 additions and 13 deletions

View File

@@ -1,3 +1,20 @@
use std::{env, path::PathBuf};
use isideload::auth::apple_account::AppleAccountBuilder;
fn main() {
isideload::test();
let args: Vec<String> = env::args().collect();
let app_path = PathBuf::from(
args.get(1)
.expect("Please provide the path to the app to install"),
);
let apple_id = args
.get(2)
.expect("Please provide the Apple ID to use for installation");
let apple_password = args.get(3).expect("Please provide the Apple ID password");
let account = AppleAccountBuilder::new(apple_id)
.danger_debug(true)
.build()
.unwrap();
}