소스 검색

Fixed IsRootDir issue.

Mark Sibly 7 년 전
부모
커밋
3fd66c483d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/std/filesystem/filesystem.monkey2

+ 1 - 1
modules/std/filesystem/filesystem.monkey2

@@ -372,7 +372,7 @@ End
 #end
 Function IsRootDir:Bool( path:String )
 	
-	Return ExtractRootDir( path )<>""
+	Return ExtractRootDir( path )=path
 End
 
 #rem monkeydoc Gets the process current directory.