]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix symlink creation for cdt.latest
authormartin f. krafft <madduck@madduck.net>
Sun, 29 Jan 2012 08:55:11 +0000 (09:55 +0100)
committermartin f. krafft <madduck@madduck.net>
Sun, 29 Jan 2012 08:55:11 +0000 (09:55 +0100)
.zsh/zshrc/39_tempfuncs

index 79f43dd89172c6a46e962b45b737494301ec09b1..d3391f6498fe29cd10c236e81e23e811b191b067 100644 (file)
@@ -13,12 +13,13 @@ cdt () {
   tmpdir=$(mktemp -td ${1:-cdt}.XXXXXX)
   builtin cd $tmpdir
   pwd
-  ln -sf $tmpdir ${TMPDIR:-/tmp}/cdt.latest
+  rm -f ${TMPDIR:-/tmp}/cdt.latest
+  ln -s $tmpdir ${TMPDIR:-/tmp}/cdt.latest
 }
 
 vit () {
   local prefix
-  for i in "$@"; do 
+  for i in "$@"; do
     case "$i" in
       -) local stdin=1; shift;;
       *) if [ -z "${prefix:-}" ]; then