소스 검색

[CI] haxe-output: fixed git command

Andy Li 9 년 전
부모
커밋
90cb1a05c0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/RunCi.hx

+ 1 - 1
tests/RunCi.hx

@@ -654,7 +654,7 @@ class RunCi {
 
 			// check to see whether this will be the first push of this haxe repo commit
 			var firstOutputCommit = firstOutputBranch || {
-				var lastLog = commandResult("git", ["log", "show", "-s", "--pretty=format:%B", "HEAD"]).stdout;
+				var lastLog = commandResult("git", ["show", "-s", "--pretty=format:%B", "HEAD"]).stdout;
 				var commitRe = ~/[a-f0-9]{40}/;
 				if (!commitRe.match(lastLog))
 					throw "No commit sha found in log: " + lastLog;