From caa10c162e5e830d61958532901a29337ee32b36 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 28 Jan 2018 23:11:36 -0400 Subject: - Adapted new-luxc to latest version of stdlib. --- new-luxc/source/luxc/io.jvm.lux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'new-luxc/source/luxc/io.jvm.lux') diff --git a/new-luxc/source/luxc/io.jvm.lux b/new-luxc/source/luxc/io.jvm.lux index 0139edc7b..fdda1520c 100644 --- a/new-luxc/source/luxc/io.jvm.lux +++ b/new-luxc/source/luxc/io.jvm.lux @@ -73,8 +73,8 @@ (def: #export (prepare-target target-dir) (-> File (Process Bool)) (do io.Monad - [_ (file.make-dir (sanitize target-dir))] - (file.make-dir (sanitize (platform-target target-dir))))) + [_ (file.make-directory (sanitize target-dir))] + (file.make-directory (sanitize (platform-target target-dir))))) (def: #export (prepare-module target-dir module-name) (-> File Text (Process Unit)) @@ -85,7 +85,7 @@ module-exists? (file.exists? module-path) made-dir? (if module-exists? (wrap module-exists?) - (file.make-dir module-path))] + (file.make-directory module-path))] (if made-dir? (wrap []) (io.fail (Could-Not-Prepare-Module (format "Module: " module-name "\n" -- cgit v1.2.3