From 09c6ea1c3294bf61bdbcd4c96a8c4600fef7f6c8 Mon Sep 17 00:00:00 2001 From: Pip Cet Date: Mon, 1 Feb 2021 19:57:39 +0000 Subject: [PATCH] jsc/wasm32/wasm32.jsc: use mkdir -p rather than mkdir --- jsc/wasm32/wasm32.jsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsc/wasm32/wasm32.jsc b/jsc/wasm32/wasm32.jsc index be355acd..50688142 100644 --- a/jsc/wasm32/wasm32.jsc +++ b/jsc/wasm32/wasm32.jsc @@ -5613,7 +5613,7 @@ ThinThin.unlinkat = function () ThinThin.mkdirat = function (fdno, pathptr) { let path = CStringAt(this.HEAP8, pathptr); - os.system("mkdir " + this.pwd + "/" + path); + os.system("mkdir -p " + this.pwd + "/" + path); return 0; };