1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-23 06:50:26 +00:00

fix cook error.

This commit is contained in:
Calvin Rose 2019-05-04 18:55:36 -04:00
parent ea25766374
commit 5a28d8d1fa

View File

@ -17,7 +17,7 @@
(print cmd)
(def res (os/shell cmd))
(unless (zero? res)
(error "command exited with status " res)))
(error (string "command exited with status " res))))
(defn- rm
"Remove a directory and all sub directories."