Skip to content

Commit

Permalink
zfsbootmenu: fix date invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Mar 10, 2024
1 parent e2019ad commit e0f5570
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions srcpkgs/zfsbootmenu/patches/date.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
From 4868300e3295dce16f3672176caf4dad413d1d6d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ferm=C3=ADn=20Olaiz?= <fermino@users.noreply.github.com>
Date: Tue, 9 Jan 2024 17:59:28 -0300
Subject: [PATCH] install-helpers.sh: fix date template syntax

---
zfsbootmenu/install-helpers.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zfsbootmenu/install-helpers.sh b/zfsbootmenu/install-helpers.sh
index 5af273e7d..8eb1ef41c 100644
--- a/zfsbootmenu/install-helpers.sh
+++ b/zfsbootmenu/install-helpers.sh
@@ -262,7 +262,7 @@ install_zbm_osver() {
local build_date
[ -r "${zfsbootmenu_module_root}/zbm-release" ] || return 0
zbm_install_file "${zfsbootmenu_module_root}/zbm-release" "/etc/zbm-release"
- if build_date="$(date %Y-%m-%d)"; then
+ if build_date="$(date '+%Y-%m-%d')"; then
cat >> "${BUILDROOT}/etc/zbm-release" <<-EOF
BUILD_ID="${build_date}"
EOF
2 changes: 1 addition & 1 deletion srcpkgs/zfsbootmenu/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template file for 'zfsbootmenu'
pkgname=zfsbootmenu
version=2.3.0
revision=1
revision=2
build_style=gnu-makefile
make_build_target="zbm-release"
depends="dracut zfs kexec-tools fzf bash pigz mbuffer ncurses
Expand Down

0 comments on commit e0f5570

Please sign in to comment.