Add `which calendar` test to calendar call in .bash_profile.
[dotfiles-public.git] / 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