浏览代码

Push master to coverity_scan

Stefan Profanter 7 年之前
父节点
当前提交
f434923056
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      tools/travis/travis_push_coverity.sh

+ 3 - 1
tools/travis/travis_push_coverity.sh

@@ -4,9 +4,11 @@ set -ev
 # This script is run by travis-ci and pushes the first commit
 # of the day to the coverity scan service
 
+echo "=== Pushing master to coverity_scan branch ==="
+
 COMMITS=`git log --oneline --since=today.midnight | wc -l`
 if [ "$COMMITS" -le 1 ]; then
-    git push https://$GITAUTH@github.com/open62541/open62541 0.2:coverity_scan
+    git push https://$GITAUTH@github.com/open62541/open62541 master:coverity_scan
 else
     echo "Not the first commit of the day - no push to coverity required"
 fi