소스 검색

fixed createDir : added default rights.

Nicolas Cannasse 19 년 전
부모
커밋
5bc26576b0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/neko/FileSystem.hx

+ 1 - 1
std/neko/FileSystem.hx

@@ -79,7 +79,7 @@ class FileSystem {
 	}
 
 	public static function createDir( path : String ) {
-		sys_create_dir( untyped path.__s );
+		sys_create_dir( untyped path.__s, 493 );
 	}
 
 	public static function deleteFile( path : String ) {