Homebrew/homebrew-aliases

Aliases are not saved into XDG_CONFIG_HOME

WavinFlag opened this issue · 2 comments

...as line 9 always fails.

BASE_DIR = begin
Pathname.new("~/.config/brew-aliases").realpath
rescue
Pathname.new("~/.brew-aliases").expand_path
end.freeze

Changing it to

    Pathname.new("~/.config/brew-aliases").expand_path

should fix it, but then the latter condition ("~/.brew-aliases") is never reached.

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.

Sorry for the delay, it should be fixed now.