From 386180eb3bade84be3e31e25bffa689999ef9e7d Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Mon, 9 Aug 2021 14:06:09 +0100 Subject: [PATCH] zsh: only print pacman updates if checkupdates exists --- zsh/lib/motd.zsh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/zsh/lib/motd.zsh b/zsh/lib/motd.zsh index 59dcad3..c496767 100644 --- a/zsh/lib/motd.zsh +++ b/zsh/lib/motd.zsh @@ -15,10 +15,12 @@ if [[ -d ~/org ]]; then todo | cut -c-$((COLUMNS + 44)) fi -# checkupdate.service populates this db -pkg_count=$(checkupdates -n | grep -cv '\[.*\]') -if (( $pkg_count > 0 )); then - short "Outdated packages: $pkg_count" +if (( $+commands[checkupdates] )); then + # checkupdate.service populates this db + pkg_count=$(checkupdates -n | grep -cv '\[.*\]') + if (( $pkg_count > 0 )); then + short "Outdated packages: $pkg_count" + fi fi # list sessions if possible -- 2.48.1