Skip to content

Commit

Permalink
Update update-das-queries
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar authored Mar 7, 2018
1 parent b275d98 commit ec82fd6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions das-utils/update-das-queries
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ if [ "$PUSH_RESULTS" = "true" ] ; then
git add das_queries
if [ $(git diff --name-only origin/master | wc -l) -gt 0 ] ; then
git commit -a -m "Updated das queries"
git pull --rebase
git push origin
for tries in 0 1 2 3 4 ; do
git pull --rebase || continue
git push origin || continue
break
done
fi
popd
fi
Expand Down

0 comments on commit ec82fd6

Please sign in to comment.