Welcome to the main channel on the development of MoarVM, a virtual machine for NQP and Rakudo (moarvm.org). This channel is being logged for historical purposes.
Set by lizmat on 24 May 2021.
Geth MoarVM: 8e9afcf52e | (Nguyễn Gia Phong)++ | src/io/dirops.c
Fix mkdir error handling

Before this, if a file is in place of the target path (not on Windows) or a parent directory is successfully created but the children, mkdir_p still reports success. On *nix, this can be tested in Raku via:
mkdir '/usr/bin/env'; mkdir '/tmp/' ~ 'universe' x 42;
01:43
MoarVM: 2c4d35eb4c | (Jimmy Zhuo)++ (committed using GitHub Web editor) | src/io/dirops.c
Merge pull request #1507 from McSinyx/mkdir

Fix mkdir error handling