浏览代码

Do not include branch name in bintray snapshot version name.
Because the branch name may contain invalid characters.

Andy Li 10 年之前
父节点
当前提交
bddb5975bf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/RunCi.hx

+ 1 - 1
tests/RunCi.hx

@@ -587,7 +587,7 @@ class RunCi {
 			var tpl = new Template(File.getContent("../extra/bintray.tpl.json"));
 			var json = tpl.execute({
 				os: systemName.toLowerCase(),
-				versionName: '${haxeVer}~${gitInfo.date}_${gitInfo.branch}_${gitInfo.commit.substr(0,7)}',
+				versionName: '${haxeVer}~${gitInfo.date}_${gitInfo.commit.substr(0,7)}',
 				versionDesc: "Automated CI build.",
 				gitRepo: gitInfo.repo,
 				gitBranch: gitInfo.branch,