Use "::std" instead of "std"

This commit is contained in:
Matthias Beyer 2018-04-14 14:08:07 +02:00
parent 9a316d1268
commit 24b0cadb89

View file

@ -19,7 +19,7 @@
use std::process::Command;
fn main() {
let profile = String::from(std::env::var("PROFILE").unwrap());
let profile = String::from(::std::env::var("PROFILE").unwrap());
let git_version = if profile == "debug" {
let output = Command::new("git")
.args(&["describe", "HEAD"])