浏览代码

fix: don't return after first bin

ncannasse 6 年之前
父节点
当前提交
1eef857ac4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      other/haxelib/Run.hx

+ 1 - 1
other/haxelib/Run.hx

@@ -97,7 +97,7 @@ class Build {
 				}
 				if( isBin ) {
 					if( !sys.FileSystem.exists(targetPath) ) sys.io.File.copy(srcPath,targetPath);
-					return;
+					continue;
 				}
 				var content = sys.io.File.getContent(srcPath);
 				var tpl = new haxe.Template(content);