Add `which calendar` test to calendar call in .bash_profile.
authorW. Trevor King <wking@drexel.edu>
Mon, 19 Dec 2011 02:34:58 +0000 (21:34 -0500)
committerW. Trevor King <wking@drexel.edu>
Mon, 19 Dec 2011 02:34:58 +0000 (21:34 -0500)
src/.bash_profile

index 5c790a47edc0074f9325fc5bf1ae8a8c70217c31..b946370ebfd380858abc2534f42443c049e06b4b 100644 (file)
@@ -13,6 +13,7 @@ fi
 
 # print my calendar if I've configured it
 # http://bsdcalendar.sourceforge.net/  (Gentoo: app-misc/calendar)
-if [ -f ~/.calendar/calendar ]; then
+CALENDAR=$(which calendar 2> /dev/null)
+if [ -n "${CALENDAR}" ] && [ -f ~/.calendar/calendar ]; then
     calendar
 fi