All of the webhooks the website uses for updates
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- #! /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
|