From b3b7cec9a18360bf6c1aa9904076f4c62701613b Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Mon, 25 Apr 2016 22:23:41 +0200 Subject: [PATCH] Create the destination folder for the -i command To: address@hidden --- chicken-install.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chicken-install.scm b/chicken-install.scm index a9e25ba..9d9fcd9 100644 --- a/chicken-install.scm +++ b/chicken-install.scm @@ -230,6 +230,8 @@ (copy (if *windows-shell* "copy" "cp -r"))) + (unless (directory-exists? dir) + (create-directory dir)) (print "copying required files to " dir " ...") (for-each (lambda (f) -- 2.8.0