From de98e83b25155efcf7118cfe131983b99b1d0874 Mon Sep 17 00:00:00 2001 From: William Ting Date: Mon, 29 Apr 2013 12:53:36 -0500 Subject: [PATCH] fix error log location --- bin/autojump | 2 +- bin/autojump.bash | 2 +- bin/autojump.zsh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/autojump b/bin/autojump index 819535a..48302a1 100755 --- a/bin/autojump +++ b/bin/autojump @@ -34,7 +34,7 @@ import re import shutil from tempfile import NamedTemporaryFile -VERSION = 'release-v21.5.7' +VERSION = 'release-v21.5.8' MAX_KEYWEIGHT = 1000 MAX_STORED_PATHS = 1000 COMPLETION_SEPARATOR = '__' diff --git a/bin/autojump.bash b/bin/autojump.bash index 1bc4940..7cad55c 100644 --- a/bin/autojump.bash +++ b/bin/autojump.bash @@ -60,7 +60,7 @@ fi autojump_add_to_database() { if [[ "${AUTOJUMP_HOME}" == "${HOME}" ]]; then - autojump -a "$(pwd ${_PWD_ARGS})" 1>/dev/null 2>>"${AUTOJUMP_DATA_DIR}/.autojump_errors" + autojump -a "$(pwd ${_PWD_ARGS})" 1>/dev/null 2>>"${AUTOJUMP_DATA_DIR}/autojump_errors" fi } diff --git a/bin/autojump.zsh b/bin/autojump.zsh index edaf90c..2a19999 100644 --- a/bin/autojump.zsh +++ b/bin/autojump.zsh @@ -29,7 +29,7 @@ function autojump_chpwd() { else _PWD_ARGS="-P" fi - { (autojump -a "$(pwd ${_PWD_ARGS})"&)>/dev/null 2>>|${AUTOJUMP_DATA_DIR}/.autojump_errors ; } 2>/dev/null + { (autojump -a "$(pwd ${_PWD_ARGS})"&)>/dev/null 2>>|${AUTOJUMP_DATA_DIR}/autojump_errors ; } 2>/dev/null } typeset -ga chpwd_functions