Fix formatting

This commit is contained in:
Roey Darwish Dror
2020-02-26 15:33:06 +02:00
parent 54d0a90c32
commit a255e68c0f
2 changed files with 3 additions and 6 deletions

View File

@@ -1,6 +1,3 @@
fn main() { fn main() {
println!( println!("cargo:rustc-env=TARGET={}", std::env::var("TARGET").unwrap());
"cargo:rustc-env=TARGET={}", }
std::env::var("TARGET").unwrap()
);
}

View File

@@ -20,12 +20,12 @@ use self::error::Upgraded;
use self::steps::*; use self::steps::*;
use self::terminal::*; use self::terminal::*;
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use log::debug;
#[cfg(feature = "self-update")] #[cfg(feature = "self-update")]
use openssl_probe; use openssl_probe;
use std::env; use std::env;
use std::io; use std::io;
use std::process::exit; use std::process::exit;
use log::debug;
use structopt::clap::crate_version; use structopt::clap::crate_version;
use structopt::StructOpt; use structopt::StructOpt;