Open bbonf opened 6 months ago
The mkdir_p implementation adds an extra / at the start of paths.
mkdir_p
/
On linux this causes no issues, but under cygwin the path gets interpreted as a network share (e.g. //host/share), and the test run fails with Unix.EROFS
//host/share
Unix.EROFS
The
mkdir_p
implementation adds an extra/
at the start of paths.On linux this causes no issues, but under cygwin the path gets interpreted as a network share (e.g.
//host/share
), and the test run fails withUnix.EROFS