소스 검색

Merge pull request #341 from benvb/patch-1

Quote $XDG_DATA_HOME when setting error file.
pull/365/head
William Ting 9 년 전
부모
커밋
59335b4109
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      bin/autojump.fish

+ 1
- 1
bin/autojump.fish 파일 보기

@ -13,7 +13,7 @@ complete -x -c j -a '(autojump --complete (commandline -t))'
# set error file location
if test (uname) = "Darwin"
set -x AUTOJUMP_ERROR_PATH ~/Library/autojump/errors.log
else if test -d $XDG_DATA_HOME
else if test -d "$XDG_DATA_HOME"
set -x AUTOJUMP_ERROR_PATH $XDG_DATA_HOME/autojump/errors.log
else
set -x AUTOJUMP_ERROR_PATH ~/.local/share/autojump/errors.log

불러오는 중...
취소
저장