diff options
author | Leah Rowe <leah@libreboot.org> | 2024-05-15 03:10:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-05-15 03:10:43 +0100 |
commit | 5c3fb9a4f887b8fb767f40cb12fcc097ac12d110 (patch) | |
tree | 7f2b3f4deefcb88d6aa96c3e803262668d347998 | |
parent | e281966f2278802d3d59e386a1e5456e0e8b368d (diff) |
build: use utc+0 when initialising git repo dates
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ git_init() { [ -L ".git" ] && $err "Reference .git is a symlink" [ -e ".git" ] && return 0 - eval "$(setvars "$(date -Rd @${versiondate})" cdate _nogit)" + eval "$(setvars "$(date -Rud @${versiondate})" cdate _nogit)" git init || $err "${PWD}: cannot initialise Git repository" git add -A . || $err "${PWD}: cannot add files to Git repository" |