All of the webhooks the website uses for updates
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #! /bin/bash
-
- branch=${2#"refs/heads/"}
-
- echo "Updating $branch in $1"
-
- if [ "$branch" == "master" ]
- then
- cd nightly/$1
- git pull
- else
- cd preview/$1/$branch
- git pull
- fi
|