mirror of
https://github.com/vale981/melpazoid
synced 2025-03-04 17:01:40 -05:00
standardize emacs cli invocations for consistency
This commit is contained in:
parent
1cfece8457
commit
72f595e2c8
2 changed files with 2 additions and 2 deletions
|
@ -30,4 +30,4 @@ ARG PACKAGE_MAIN
|
|||
ENV PACKAGE_MAIN "${PACKAGE_MAIN}"
|
||||
|
||||
WORKDIR $ELISP_PATH
|
||||
CMD ["emacs", "--script", "melpazoid.el"]
|
||||
CMD ["emacs", "--quick", "--batch", "--load=melpazoid.el"]
|
||||
|
|
|
@ -859,7 +859,7 @@ def eval_elisp(script: str) -> str:
|
|||
file.write(content)
|
||||
script = f"""(progn (add-to-list 'load-path "{tmpdir}") {script})"""
|
||||
result = subprocess.run(
|
||||
['emacs', '--no-init-file', '--batch', '--eval', script],
|
||||
['emacs', '--quick', '--batch', '--eval', script],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
check=False,
|
||||
|
|
Loading…
Add table
Reference in a new issue