From 83844bc7233701a9e7ceede6a17e10918f1404e5 Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Thu, 6 Nov 2025 15:33:31 +0000 Subject: [PATCH] Use less zero-y timestamp --- crates/cli/src/commands/templates.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/src/commands/templates.rs b/crates/cli/src/commands/templates.rs index 39eb5e412..1199e1f9a 100644 --- a/crates/cli/src/commands/templates.rs +++ b/crates/cli/src/commands/templates.rs @@ -67,7 +67,7 @@ impl Options { .map_err(anyhow::Error::from_boxed)?; let now = if stabilise { - DateTime::from_timestamp_secs(0).unwrap() + DateTime::from_timestamp_secs(1_446_823_992).unwrap() } else { SystemClock::default().now() };