/scheme/sys/uname: use commit hash instead of time for reproducibility

This commit is contained in:
Connor-GH
2026-03-15 17:21:46 -05:00
parent ea47151757
commit d81ba0645b
+1 -1
View File
@@ -6,7 +6,7 @@ pub fn resource(_token: &mut CleanLockToken) -> Result<Vec<u8>> {
"Redox\n{}\n{}\n{}\n",
env!("CARGO_PKG_VERSION"),
env!("TARGET").split('-').next().unwrap(),
env!("COOKBOOK_TIME_IDENT")
env!("COOKBOOK_COMMIT_IDENT")
)
.into_bytes())
}