ソースを参照

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