From c24bdab97e53943fd36cf4e63047785b9c08077b Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Mon, 26 Apr 2021 17:12:07 +0300 Subject: Use -u instead of --utc date flag --- crates/rust-analyzer/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/rust-analyzer/build.rs b/crates/rust-analyzer/build.rs index 780d247c9..bca6611d6 100644 --- a/crates/rust-analyzer/build.rs +++ b/crates/rust-analyzer/build.rs @@ -55,7 +55,7 @@ fn commit_hash() -> Option { } fn build_date() -> Option { - output_to_string("date --utc +%Y-%m-%d") + output_to_string("date -u +%Y-%m-%d") } fn output_to_string(command: &str) -> Option { -- cgit v1.2.3