Frank Pursel schreef op di 15-02-2022 om 17:58 [-0800]: > +                        (if tests? > +                            (setenv "ANT_OPTS" "-Doffline=true") > +                            (invoke "ant" "junit")) #t)) This does 'setenv' when tests?, and runs "ant junit" when (not tests?), which doesn't seem useful. Did you mean (when tests? (setenv ...) (invoke ...)) instead? Also, you can drop the trailing #t, while they used to be necessary, they don't have a meaning anymore and are gradually removed from existing packages. Greetings, Maxime.