From 285fd95b8b6f526e772a121b89e29fd86e869dba Mon Sep 17 00:00:00 2001 From: Juergen Hoetzel Date: Thu, 20 May 2021 19:52:33 +0200 Subject: [PATCH] Fix void-variable error: partitions --- eshell-info-banner.el | 1 + 1 file changed, 1 insertion(+) diff --git a/eshell-info-banner.el b/eshell-info-banner.el index 9a769b4..f8130ad 100644 --- a/eshell-info-banner.el +++ b/eshell-info-banner.el @@ -512,6 +512,7 @@ If RELEASE-FILE is nil, use '/etc/os-release'." (kernel (concat (s-trim (shell-command-to-string "uname -s")) " " (s-trim (shell-command-to-string "uname -r")))) + (partitions (eshell-info-banner--get-mounted-partitions)) (left-padding (eshell-info-banner--get-longest-path partitions)) (left-text (max (length os) (length hostname)))