Kaynağa Gözat

fix : added trailing slash to haxepath

Nicolas Cannasse 17 yıl önce
ebeveyn
işleme
55fe881ee1
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. 3 0
      std/tools/haxelib/Main.hx

+ 3 - 0
std/tools/haxelib/Main.hx

@@ -460,6 +460,9 @@ class Main {
 			var haxepath = neko.Sys.getEnv("HAXEPATH");
 			if( haxepath == null )
 				throw "HAXEPATH environment variable not defined, please run haxesetup.exe first";
+			var last = haxepath.charAt(haxepath.length - 1);
+			if( last != "/" && last != "\\" )
+				haxepath += "/";
 			var rep = haxepath+REPNAME;
 			try {
 				safeDir(rep);