From 2bdb858b78630de4b41f512cb12cbaaa76cc93ba Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Mon, 25 Jun 2012 12:50:03 -0500 Subject: Add file existence test before trying to run r14-xdg-update script. --- starttde | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'starttde') diff --git a/starttde b/starttde index 5f2cd4084..3933f8a21 100644 --- a/starttde +++ b/starttde @@ -255,8 +255,14 @@ if [ -d "$tdehome" ]; then # Possibly run some R14 XDG compliance updates. R14_UPDATED="`$TDEDIR/bin/kreadconfig --file kdeglobals --group "R14 XDG Updates" --key Updated`" if [ "$R14_UPDATED" != "true" ]; then - sh $TDEDIR/bin/r14-xdg-update - if [ "$?" != "0" ]; then + if [ -e $TDEDIR/bin/r14-xdg-update ]; then + sh $TDEDIR/bin/r14-xdg-update + EXIT_CODE="$?" + else + echo "[starttde] $TDEDIR/bin/r14-xdg-update does not exist." 1>&2 + echo " Unable to perform a profile update for Trinity release R14 XDG compliance." + fi + if [ "$EXIT_CODE" != "0" ]; then exit 1 fi fi -- cgit v1.2.3