summaryrefslogtreecommitdiff
path: root/cli/rt/30_fs.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/rt/30_fs.js')
-rw-r--r--cli/rt/30_fs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/rt/30_fs.js b/cli/rt/30_fs.js
index 7faa2c392..7c7d81c3b 100644
--- a/cli/rt/30_fs.js
+++ b/cli/rt/30_fs.js
@@ -77,7 +77,7 @@
}
function mkdirArgs(path, options) {
- const args = { path, recursive: false };
+ const args = { path: pathFromURL(path), recursive: false };
if (options != null) {
if (typeof options.recursive == "boolean") {
args.recursive = options.recursive;