# Csh configuration file.
-# Copyright (C) 2011-2012 Simon Ruderich
+# Copyright (C) 2011-2013 Simon Ruderich
#
# This file is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# along with this file. If not, see <http://www.gnu.org/licenses/>.
-# Start Zsh in interactive login mode, otherwise do nothing. -l is used so Zsh
-# sources .zlogin and .zlogout.
+# Start Zsh in interactive login mode if available, otherwise do nothing. -l
+# is used so Zsh sources .zlogin and .zlogout.
if ($?prompt) then
- exec zsh -l
+ # csh doesn't use `type` .. yeah POSIX.
+ which zsh >/dev/null && exec zsh -l
endif
# vim: ft=csh