diff --git a/cli/src/build.rs b/cli/src/build.rs index a7b2128c9..fe1d984f2 100644 --- a/cli/src/build.rs +++ b/cli/src/build.rs @@ -10,7 +10,8 @@ use std::{ fn get_docker_image() -> String { // Get the docker image name from the environment variable - std::env::var("SP1_DOCKER_IMAGE").unwrap_or_else(|_| "ghcr.io/succinctlabs/sp1:latest".to_string()) + std::env::var("SP1_DOCKER_IMAGE") + .unwrap_or_else(|_| "ghcr.io/succinctlabs/sp1:latest".to_string()) } #[derive(Parser)]