fix(lib): missing bin/doom error on doom/reload
doom/reload quotes `doom-bin`, but if doom-bin uses a tilde instead of an absolute path, the quoting means it won't be expanded to $HOME, causing "no such file or directory" errors when trying to execute it. Fix: #6603
This commit is contained in:
parent
a22cd75839
commit
35a89bdfa6
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; core/autoload/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(defvar doom-bin-dir (concat doom-emacs-dir "bin/"))
|
||||
(defvar doom-bin (concat doom-bin-dir "doom"))
|
||||
(defvar doom-bin-dir (expand-file-name "bin/" doom-emacs-dir))
|
||||
(defvar doom-bin (expand-file-name "doom" doom-bin-dir))
|
||||
|
||||
;;;###autoload
|
||||
(defvar doom-reloading-p nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue