mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-15 14:51:01 -08:00
fix(cli): doom sync: void-variable envvars error
For Windows users only.
Amend: 8cafbe4408
This commit is contained in:
parent
be4fb85dd9
commit
9c8cfaadde
1 changed files with 1 additions and 1 deletions
|
|
@ -1201,7 +1201,7 @@ Emacs' batch library lacks an implementation of the exec system call."
|
|||
"\n} finally {\n"
|
||||
,(cl-loop for file in persistent-files
|
||||
concat (format " Remove-Item -Path %S\n " file))
|
||||
,(cl-loop for (var . val) in envvars
|
||||
,(cl-loop for (var . _) in persisted-env
|
||||
concat (format " $env:%s = $__%s\n " var var))
|
||||
"\n}")))))
|
||||
(doom-log "_doomrun: %s %s"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue