Browse Source

no rights check on windows

Nicolas Cannasse 18 years ago
parent
commit
e4a0f83674
1 changed files with 2 additions and 0 deletions
  1. 2 0
      doc/Installer.hx

+ 2 - 0
doc/Installer.hx

@@ -69,6 +69,8 @@ class Installer {
 	}
 
 	function checkRights() {
+		if( SYS == "Windows" )
+			return true;
 		try {
 			var tmp = baseDir + "/.tmp.haxe.inst";
 			var f = neko.io.File.write(tmp,true);