소스 검색

push 0.2 to coverity_scan without forcing

Julius Pfrommer 8 년 전
부모
커밋
af362f0a2a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/travis/travis_push_coverity.sh

+ 1 - 1
tools/travis/travis_push_coverity.sh

@@ -6,7 +6,7 @@ set -ev
 
 COMMITS=`git log --oneline --since=today.midnight | wc -l`
 if [ "$COMMITS" -le 1 ]; then
-    git push --force https://$GITAUTH@github.com/open62541/open62541 coverity_scan
+    git push https://$GITAUTH@github.com/open62541/open62541 0.2:coverity_scan
 else
     echo "Not the first commit of the day - no push to coverity required"
 fi