mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Merge branch 'songtronix/hotfix' into 'master'
Fix singleplayer See merge request veloren/veloren!605
This commit is contained in:
commit
ab8c4a45b5
@ -1,8 +1,8 @@
|
||||
pub const GIT_VERSION: &str = include_str!(concat!(env!("OUT_DIR"), "/githash"));
|
||||
|
||||
lazy_static::lazy_static! {
|
||||
pub static ref GIT_HASH: &'static str = include_str!(concat!(env!("OUT_DIR"), "/githash")).split(" ").nth(0).unwrap();
|
||||
pub static ref GIT_DATE: &'static str = include_str!(concat!(env!("OUT_DIR"), "/githash")).split(" ").nth(1).unwrap();
|
||||
pub static ref GIT_HASH: &'static str = include_str!(concat!(env!("OUT_DIR"), "/githash")).split("/").nth(0).expect("failed to retrieve git_hash!");
|
||||
pub static ref GIT_DATE: &'static str = include_str!(concat!(env!("OUT_DIR"), "/githash")).split("/").nth(1).expect("failed to retrieve git_date!");
|
||||
}
|
||||
|
||||
use vek::{Mat3, Rgb, Rgba, Vec3};
|
||||
|
Loading…
Reference in New Issue
Block a user