chore(build): print kernel architecture during fetch

This commit is contained in:
Alex Zenla 2024-06-20 19:17:56 -07:00
parent a71375e4ad
commit a6d4da8bac
No known key found for this signature in database
GPG Key ID: 067B238899B51269

View File

@ -26,6 +26,7 @@ async fn main() -> Result<()> {
fs::create_dir_all("target/kernel").await?;
let arch = env::var("TARGET_ARCH").map_err(|_| anyhow!("missing TARGET_ARCH env var"))?;
println!("kernel architecture: {}", arch);
let platform = OciPlatform::new(
Os::Linux,
match arch.as_str() {