main
Matthew Butterick 5 years ago committed by GitHub
parent ddb732dffb
commit 78eb3e83b9

@ -36,9 +36,9 @@
(define (VIEW-RESULT)
(define open-string
(case (system-type 'os)
['macosx "open ~a"]
['windows "start ~a"]
['unix "xdg-open ~a &> /dev/null"]
[(macosx) "open ~a"]
[(windows) "start ~a"]
[(unix) "xdg-open ~a &> /dev/null"]
[else (error "Don't know how to open PDF file.")]))
(when (file-exists? pdf-path)
(void (system (format open-string pdf-path)))))

Loading…
Cancel
Save