diff options
author | Kirill Bulatov <[email protected]> | 2021-04-26 15:12:07 +0100 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2021-04-26 15:12:13 +0100 |
commit | c24bdab97e53943fd36cf4e63047785b9c08077b (patch) | |
tree | 485371c10449f0da91f2170a9ae904cca678f60d /xtask/src | |
parent | eee50b6921662dee766c987e1a0b15b371e141d1 (diff) |
Use -u instead of --utc date flag
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 01bf6e70d..ce3353410 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs | |||
@@ -108,7 +108,7 @@ fn run_fuzzer() -> Result<()> { | |||
108 | } | 108 | } |
109 | 109 | ||
110 | fn date_iso() -> Result<String> { | 110 | fn date_iso() -> Result<String> { |
111 | let res = cmd!("date --utc +%Y-%m-%d").read()?; | 111 | let res = cmd!("date -u +%Y-%m-%d").read()?; |
112 | Ok(res) | 112 | Ok(res) |
113 | } | 113 | } |
114 | 114 | ||