Skip to content

Commit

Permalink
jsc/wasm32/wasm32.jsc: use mkdir -p rather than mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
pipcet committed Feb 1, 2021
1 parent ac61b18 commit 09c6ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsc/wasm32/wasm32.jsc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

Expand Down

0 comments on commit 09c6ea1

Please sign in to comment.