rebuild: more solid check for str-or-empty

master
an 2019-06-13 21:41:31 -04:00
parent 506219de4b
commit 54a6719cec
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
(exit 1)))
(define (str-or-empty hash key str)
(if (hash-has-key? hash key) str ""))
(if (hash-ref hash key #f) str ""))
(define (higan-make args)
(sys (~a "make -j12 -C " args " uninstall"))