branch: externals/phpinspect
commit 9d697550f7742e07f40ffcc7e28d2e69d0a8290b
Author: Hugo Thunnissen <de...@hugot.nl>
Commit: Hugo Thunnissen <de...@hugot.nl>

    Fix oopsie in compile script
---
 compile.bash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compile.bash b/compile.bash
index 32ca4cd2cb..c8c3c82117 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

Reply via email to