From 9d697550f7742e07f40ffcc7e28d2e69d0a8290b Mon Sep 17 00:00:00 2001 From: Hugo Thunnissen Date: Tue, 15 Aug 2023 18:28:50 +0200 Subject: [PATCH] Fix oopsie in compile script --- compile.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.bash b/compile.bash index 32ca4cd..c8c3c82 100644 --- a/compile.bash +++ b/compile.bash @@ -4,6 +4,6 @@ for file in ./*.el; do cask emacs -batch -L . --eval '(setq byte-compile-error-on-warn t)' -f batch-byte-compile "$file" || break done -if ! [[ -n 'NO_REMOVE_ELC' ]]; then +if [[ -z $NO_REMOVE_ELC ]]; then rm ./*.elc fi