Skip to content

Commit 72be046

Browse files
committed
On Linux OS.mkdir takes 2 arguments, not 1
1 parent 2fb003f commit 72be046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

os/Path.oz

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ define
299299
{Getcwd}
300300
end
301301
meth mkdir()
302-
{OS.mkDir @info.string}
302+
{OS.mkDir @info.string ['S_IRUSR' 'S_IWUSR' 'S_IXUSR' 'S_IRGRP' 'S_IWGRP' 'S_IXGRP' 'S_IROTH' 'S_IWOTH' 'S_IXOTH']}
303303
end
304304
meth mkdirs()
305305
if @info.components==nil then skip else

0 commit comments

Comments
 (0)