From: Michael Prokop Date: Thu, 6 Dec 2007 22:28:05 +0000 (+0100) Subject: Adjust xsource function in skeleton file X-Git-Tag: 0.3.41~3 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=9b7b15ea36e0e6227cdec1274f836b0dcf39638e;hp=7a325cd3d523936085732da281fac43e55ad4e5c;p=grml-etc-core.git Adjust xsource function in skeleton file --- diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index 7af2f0a..a8eb452 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -3,14 +3,18 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mit Aug 08 21:22:03 CEST 2007 [mika] +# Latest change: Don Dez 06 23:27:51 CET 2007 [mika] ################################################################################ # source ~/.zshrc.global {{{ # see /etc/zsh/zshrc for some general settings # If you don't have write permissions to /etc/zsh/zshrc on your own # copy the file to your $HOME as /.zshrc.global and we source it: -xsource "${HOME}/.zshrc.global" +if type xsource &>/dev/null ; then + xsource "${HOME}/.zshrc.global" +else + . "${HOME}/.zshrc.global" +fi # }}} # check whether global file has been read {{{ @@ -1246,7 +1250,7 @@ gethgsnap() { if type xsource &>/dev/null ; then xsource "${HOME}/.zshrc.local" else - xsource "${HOME}/.zshrc.local" + . "${HOME}/.zshrc.local" fi # ...and remove utility functions again.