Browse Source

fix: don't return after first bin

ncannasse 6 years ago
parent
commit
1eef857ac4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      other/haxelib/Run.hx

+ 1 - 1
other/haxelib/Run.hx

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