feat(doom): add doom.aot option (#1214)

This commit is contained in:
Gideon
2025-11-08 11:03:08 +01:00
committed by GitHub
parent ea1b286c98
commit 28f5754efd
3 changed files with 28 additions and 1 deletions

View File

@@ -65,7 +65,11 @@ impl Emacs {
command.arg("--force");
}
command.args(["upgrade"]);
command.arg("upgrade");
if ctx.config().doom_aot() {
command.arg("--aot");
}
command.status_checked()
}