https://github.com/hannorein/rebound
Raw File
Tip revision: d423589e478413e0b1f7a2e1c4c57391abf434a1 authored by Hanno Rein on 21 April 2021, 01:29:57 UTC
Updating version to 3.17.0
Tip revision: d423589
triggerdependencybuilds.sh
#!/bin/bash -l

body='{
"request": {
"branch":"main"
}}'

curl -s -X POST \
   -H "Content-Type: application/json" \
   -H "Accept: application/json" \
   -H "Travis-API-Version: 3" \
   -H "Authorization: token "$TRAVIS_API_TOKEN \
   -d "$body" \
   https://api.travis-ci.org/repo/dtamayo%2Freboundx/requests
back to top