From 879b62c353607d5fac30851722c19f2c2b00b1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20Marczykowska-G=C3=B3recka?= Date: Thu, 27 Sep 2018 21:05:28 +0200 Subject: [PATCH] Error in qubes-dom0-update --gui Fixed error with zenity in qubes-dom0-update --gui, in which zenity was called with insufficient parameters. fixes QubesOS/qubes-issues#4339 --- dom0-updates/qubes-dom0-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom0-updates/qubes-dom0-update b/dom0-updates/qubes-dom0-update index 37b42f2..f5c1e70 100755 --- a/dom0-updates/qubes-dom0-update +++ b/dom0-updates/qubes-dom0-update @@ -230,6 +230,6 @@ else rm -f $UPDATES_STAT_FILE echo "No updates available" >&2 if [ "$GUI" == "1" ]; then - zenity --title='Dom0 updates' --text='No updates available' + zenity --info --title='Dom0 updates' --text='No updates available' fi fi