From 9cbbf81c3fb78bbe15fe63926c6366f8d15858b5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 10 Feb 2020 14:35:39 -0500 Subject: [PATCH] Don't recompile in 'doom sync' This may be reinstated later, but for now is a common source of issues because Doom must be fully loaded before byte-compiling; and doing this is prone to errors when Doom is in an incomplete state (which may be the case if there were an error earlier in 'doom sync'). This won't be an issue once the doom script becomes transactional. --- core/core-cli.el | 1 - 1 file changed, 1 deletion(-) diff --git a/core/core-cli.el b/core/core-cli.el index d0149f3cb..cc1511b37 100644 --- a/core/core-cli.el +++ b/core/core-cli.el @@ -359,7 +359,6 @@ stale." (doom-cli-packages-build) (doom-cli-packages-purge prune-p 'builds-p prune-p prune-p) (doom-cli-reload-package-autoloads) - (doom-cli-byte-compile nil 'recompile) t))) (load! "cli/env")