Skip to content

Commit bf6adf4

Browse files
committed
make portable with #+sbcl
1 parent 5ed75e5 commit bf6adf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.lisp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,15 +290,15 @@ Primarily used anonymize IPs and hash fields with ANONIP and HASH."
290290
;;
291291
;; if you handle END-OF-FILE here, it prevents the RESTART-CASE in the COMPILE-RUNTIME-* functions from being
292292
;; able to handle the restarts. unsure why.
293-
(sb-int:broken-pipe nil)
293+
#+sbcl (sb-int:broken-pipe nil)
294294
;; If there's a debugger error, after aborting SIMPLE-FILE-ERROR is raised again. This let's a user immediately
295295
;; exit after running into an error.
296-
(sb-int:simple-file-error nil)))))
296+
#+sbcl (sb-int:simple-file-error nil)))))
297297

298298
(defun cat/command ()
299299
(clingon:make-command
300300
:name "cleek"
301-
:version "0.14.0"
301+
:version "0.14.1"
302302
:usage "[ZEEK-LOG]..."
303303
:description "Concatenate, filter, and convert Zeek logs"
304304
:handler #'cat/handler

0 commit comments

Comments
 (0)