ソースを参照

use -win directory for haxe as well

Nicolas Cannasse 18 年 前
コミット
cc54b54490
2 ファイル変更2 行追加2 行削除
  1. 1 1
      doc/Installer.hx
  2. 1 1
      doc/release.neko

+ 1 - 1
doc/Installer.hx

@@ -103,7 +103,7 @@ class Installer {
 			if( r.match(f) ) {
 			if( r.match(f) ) {
 				var pf = r.matched(3);
 				var pf = r.matched(3);
 				switch( SYS ) {
 				switch( SYS ) {
-				case "Windows": if( pf != "" ) continue;
+				case "Windows": if( pf != "-win" ) continue;
 				case "Linux": if( pf != "-linux" ) continue;
 				case "Linux": if( pf != "-linux" ) continue;
 				case "Mac": if( pf != "-osx" ) continue;
 				case "Mac": if( pf != "-osx" ) continue;
 				default: continue;
 				default: continue;

+ 1 - 1
doc/release.neko

@@ -9,7 +9,7 @@ ext = switch( sys ) {
 	"Windows" => {
 	"Windows" => {
 		curdir = ".\\";
 		curdir = ".\\";
 		binext = ".exe";
 		binext = ".exe";
-		""
+		"-win"
 	}
 	}
 	"Mac" => "-osx"
 	"Mac" => "-osx"
 	"Linux" => "-linux"
 	"Linux" => "-linux"