From ae87f160b8886fbf9a42154ad5f0d78b87adac87 Mon Sep 17 00:00:00 2001 From: Tobias Klausmann Date: Thu, 10 Jul 2008 16:29:55 +0000 Subject: [PATCH] Make sure catalyst gets a retval it can be happy about. svn path=/trunk/; revision=560 --- releases/2008.0/scripts/livecd.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/releases/2008.0/scripts/livecd.sh b/releases/2008.0/scripts/livecd.sh index 9222f303..5acd24cd 100644 --- a/releases/2008.0/scripts/livecd.sh +++ b/releases/2008.0/scripts/livecd.sh @@ -68,3 +68,7 @@ EOF # Remove DefaultColorDepth [ -e /etc/X11/xorg.conf.in ] && sed -i -e '/DefaultColorDepth/d' /etc/X11/xorg.conf.in +# This is here so that the retval of the line above (which may be non-0 +# even if everything is ok) is not the retval of the script which would +# make catalyst unhappy. +exit 0